aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKarl Heuer1995-12-13 01:36:02 +0000
committerKarl Heuer1995-12-13 01:36:02 +0000
commit4f675a8c509db3226ea6358d2a9f0d7069ac2487 (patch)
tree4a869c95505d44abcba13cbc873bbd38868c67bd
parentbfc8e97b47190f43a05e5e9a8b2b4e6579d45bde (diff)
downloademacs-4f675a8c509db3226ea6358d2a9f0d7069ac2487.tar.gz
emacs-4f675a8c509db3226ea6358d2a9f0d7069ac2487.zip
(change-log-mode): Defaults for `indent-tabs-mode'
and `tab-width'.
-rw-r--r--lisp/add-log.el4
1 files changed, 3 insertions, 1 deletions
diff --git a/lisp/add-log.el b/lisp/add-log.el
index f89435a396f..40ed5c1ab76 100644
--- a/lisp/add-log.el
+++ b/lisp/add-log.el
@@ -279,7 +279,9 @@ Runs `change-log-mode-hook'."
279 (setq major-mode 'change-log-mode 279 (setq major-mode 'change-log-mode
280 mode-name "Change Log" 280 mode-name "Change Log"
281 left-margin 8 281 left-margin 8
282 fill-column 74) 282 fill-column 74
283 indent-tabs-mode t
284 tab-width 8)
283 (use-local-map change-log-mode-map) 285 (use-local-map change-log-mode-map)
284 ;; Let each entry behave as one paragraph: 286 ;; Let each entry behave as one paragraph:
285 ;; We really do want "^" in paragraph-start below: it is only the lines that 287 ;; We really do want "^" in paragraph-start below: it is only the lines that