aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorStefan Monnier2002-12-02 16:09:02 +0000
committerStefan Monnier2002-12-02 16:09:02 +0000
commited09af61b0c870fafd31494fcc05225567d1ea54 (patch)
tree5e73a2136a9ff84fefc0ec8812a776ea04ad31a9
parent7666b1cb8c2acc14042c72bb272fa64a06958748 (diff)
downloademacs-ed09af61b0c870fafd31494fcc05225567d1ea54.tar.gz
emacs-ed09af61b0c870fafd31494fcc05225567d1ea54.zip
(change-log-mode): Set indent-line-function explicitly
to what it was before indent-line-function's default was changed.
-rw-r--r--lisp/add-log.el1
1 files changed, 1 insertions, 0 deletions
diff --git a/lisp/add-log.el b/lisp/add-log.el
index 5b69cc90426..711bc64c193 100644
--- a/lisp/add-log.el
+++ b/lisp/add-log.el
@@ -600,6 +600,7 @@ Runs `change-log-mode-hook'."
600 tab-width 8) 600 tab-width 8)
601 (set (make-local-variable 'fill-paragraph-function) 601 (set (make-local-variable 'fill-paragraph-function)
602 'change-log-fill-paragraph) 602 'change-log-fill-paragraph)
603 (set (make-local-variable 'indent-line-function) 'indent-to-left-margin)
603 ;; We really do want "^" in paragraph-start below: it is only the 604 ;; We really do want "^" in paragraph-start below: it is only the
604 ;; lines that begin at column 0 (despite the left-margin of 8) that 605 ;; lines that begin at column 0 (despite the left-margin of 8) that
605 ;; we are looking for. Adding `* ' allows eliding the blank line 606 ;; we are looking for. Adding `* ' allows eliding the blank line