# HG changeset patch # User John W. Eaton # Date 1260556698 18000 # Node ID d4dab9605c49b53dee6e8453b71628433c83c80d # Parent a7e288044ef7ae347c20ab2cac245883426dd23a correctly set indent-tabs-mode for ChangeLogs and Makefiles in .dir-locals.el diff -r a7e288044ef7 -r d4dab9605c49 .dir-locals.el --- a/.dir-locals.el Fri Dec 11 13:30:16 2009 -0500 +++ b/.dir-locals.el Fri Dec 11 13:38:18 2009 -0500 @@ -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)))) diff -r a7e288044ef7 -r d4dab9605c49 ChangeLog --- a/ChangeLog Fri Dec 11 13:30:16 2009 -0500 +++ b/ChangeLog Fri Dec 11 13:38:18 2009 -0500 @@ -1,5 +1,8 @@ 2009-12-11 John W. Eaton + * .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