summaryrefslogtreecommitdiff
path: root/.dir-locals.el
diff options
context:
space:
mode:
Diffstat (limited to '.dir-locals.el')
-rw-r--r--.dir-locals.el30
1 files changed, 16 insertions, 14 deletions
diff --git a/.dir-locals.el b/.dir-locals.el
index 39820d5..755c848 100644
--- a/.dir-locals.el
+++ b/.dir-locals.el
@@ -1,17 +1,19 @@
-;; Per-directory local variables for GNU Emacs 23 and later.
+;;; Directory Local Variables
+;;; For more information see (info "(emacs) Directory Variables")
((nil
- . ((fill-column . 78)
- (tab-width . 8)
-
- ;; For use with 'bug-reference-prog-mode'.
- (bug-reference-url-format . "http://bugs.gnu.org/%s")
- (bug-reference-bug-regexp
- . "<https?://\\(debbugs\\|bugs\\)\\.gnu\\.org/\\([0-9]+\\)>")))
+ (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 . nil)
- (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 1)))))
+ (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 1))
+ (texinfo-mode
+ (indent-tabs-mode)
+ (fill-column . 72)
+ (ispell-local-dictionary . "american")))