changeset 9966:d4dab9605c49

correctly set indent-tabs-mode for ChangeLogs and Makefiles in .dir-locals.el
author John W. Eaton <jwe@octave.org>
date Fri, 11 Dec 2009 13:38:18 -0500
parents a7e288044ef7
children 75503ecdac32
files .dir-locals.el ChangeLog
diffstat 2 files changed, 5 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/.dir-locals.el
+++ b/.dir-locals.el
@@ -1,4 +1,5 @@
 ((nil . ((indent-tabs-mode . nil)
          (fill-column . 72)))
  (c-default-mode "gnu")
- ("ChangeLog" . ((nil . ((indent-tabs-mode . t))))))
+ (change-log-mode . ((indent-tabs-mode . t)))
+ (makefile-mode . ((indent-tabs-mode . t))))
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,8 @@
 2009-12-11  John W. Eaton  <jwe@octave.org>
 
+	* .dir-locals.el: Correctly set indent-tabs-mode for ChangeLogs,
+	and Makefiles.
+
 	* common.mk (cp_update_rule): New macro.
 
 2009-12-10  John W. Eaton  <jwe@octave.org>