aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard M. Stallman1993-07-31 18:41:53 +0000
committerRichard M. Stallman1993-07-31 18:41:53 +0000
commit964141f28950bc7571eebb2c92d1d3c70c5f2cb0 (patch)
tree68d5ee37a7a55a7f68d886d391ac3670038ed5af
parentd49b6338aa54b1e627f1a08432ee1340ac76871a (diff)
downloademacs-964141f28950bc7571eebb2c92d1d3c70c5f2cb0.tar.gz
emacs-964141f28950bc7571eebb2c92d1d3c70c5f2cb0.zip
(change-log-mode): Use \f for formfeed, to avoid syntax error.
-rw-r--r--lisp/add-log.el6
1 files changed, 3 insertions, 3 deletions
diff --git a/lisp/add-log.el b/lisp/add-log.el
index 46c24585921..1df14583863 100644
--- a/lisp/add-log.el
+++ b/lisp/add-log.el
@@ -239,12 +239,12 @@ Runs `change-log-mode-hook'."
239 fill-column 74) 239 fill-column 74)
240 (use-local-map change-log-mode-map) 240 (use-local-map change-log-mode-map)
241 ;; Let each entry behave as one paragraph: 241 ;; Let each entry behave as one paragraph:
242 (set (make-local-variable 'paragraph-start) "^\\s *$\\|^^L") 242 (set (make-local-variable 'paragraph-start) "^\\s *$\\|^\f")
243 (set (make-local-variable 'paragraph-separate) "^\\s *$\\|^^L\\|^\\sw") 243 (set (make-local-variable 'paragraph-separate) "^\\s *$\\|^\f\\|^\\sw")
244 ;; Let all entries for one day behave as one page. 244 ;; Let all entries for one day behave as one page.
245 ;; Match null string on the date-line so that the date-line 245 ;; Match null string on the date-line so that the date-line
246 ;; is grouped with what follows. 246 ;; is grouped with what follows.
247 (set (make-local-variable 'page-delimiter) "^\\<\\|^ ") 247 (set (make-local-variable 'page-delimiter) "^\\<\\|^\f")
248 (set (make-local-variable 'version-control) 'never) 248 (set (make-local-variable 'version-control) 'never)
249 (set (make-local-variable 'adaptive-fill-regexp) "\\s *") 249 (set (make-local-variable 'adaptive-fill-regexp) "\\s *")
250 (run-hooks 'change-log-mode-hook)) 250 (run-hooks 'change-log-mode-hook))