diff options
author | Andy Wingo <wingo@pobox.com> | 2010-07-16 11:50:51 +0200 |
---|---|---|
committer | Andy Wingo <wingo@pobox.com> | 2010-07-16 17:35:43 +0200 |
commit | 720a91c131d0f4bb5300a865130ca9a1c2afde2c (patch) | |
tree | c56bda7b18ca6342a9941f21fb5b71ab285aff30 | |
parent | e50d921bd87e53df33c04831ecf8b3d100af2b7b (diff) | |
download | guile-720a91c131d0f4bb5300a865130ca9a1c2afde2c.tar.gz |
lower fill-column in .dir-locals.el
* .dir-locals.el: Fill-columns back down to 72.
-rw-r--r-- | .dir-locals.el | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/.dir-locals.el b/.dir-locals.el index ca0c3370d..e651538ed 100644 --- a/.dir-locals.el +++ b/.dir-locals.el @@ -1,8 +1,9 @@ ;; Per-directory local variables for GNU Emacs 23 and later. -((nil . ((fill-column . 80) +((nil . ((fill-column . 72) (tab-width . 8))) (c-mode . ((c-file-style . "gnu"))) (scheme-mode . ((indent-tabs-mode . nil))) (emacs-lisp-mode . ((indent-tabs-mode . nil))) - (texinfo-mode . ((indent-tabs-mode . nil)))) + (texinfo-mode . ((indent-tabs-mode . nil) + (fill-column . 72)))) |