summaryrefslogtreecommitdiff
path: root/.dir-locals.el
blob: 465aa5851b186e6da0be4c4d54ef1f550c7b55c9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
;;; Directory Local Variables
;;; For more information see (info "(emacs) Directory Variables")

((nil
  (fill-column . 78)
  (tab-width . 8)
  (bug-reference-url-format . "http://bugs.gnu.org/%s")
  (bug-reference-bug-regexp
   . "<https?://\\(debbugs\\|bugs\\)\\.gnu\\.org/\\([0-9]+\\)>"))
 (scheme-mode
  (indent-tabs-mode)
  (eval put 'call-with-time 'scheme-indent-function 1)
  (eval put 'test-error 'scheme-indent-function 1)
  (eval put 'make-parameter 'scheme-indent-function 1)
  (eval put 'with-database 'scheme-indent-function 0)
  (eval put 'with-db-critical-section 'scheme-indent-function 1)
  (eval . (put 'with-critical-section 'scheme-indent-function 2)))
 (texinfo-mode
  (indent-tabs-mode)
  (fill-column . 72)
  (ispell-local-dictionary . "american")))