From: Richard M. Stallman Date: Sat, 31 Jul 1993 18:41:53 +0000 (+0000) Subject: (change-log-mode): Use \f for formfeed, to avoid syntax error. X-Git-Tag: emacs-19.34~11471 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=964141f28950bc7571eebb2c92d1d3c70c5f2cb0;p=emacs.git (change-log-mode): Use \f for formfeed, to avoid syntax error. --- 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'." fill-column 74) (use-local-map change-log-mode-map) ;; Let each entry behave as one paragraph: - (set (make-local-variable 'paragraph-start) "^\\s *$\\|^^L") - (set (make-local-variable 'paragraph-separate) "^\\s *$\\|^^L\\|^\\sw") + (set (make-local-variable 'paragraph-start) "^\\s *$\\|^\f") + (set (make-local-variable 'paragraph-separate) "^\\s *$\\|^\f\\|^\\sw") ;; Let all entries for one day behave as one page. ;; Match null string on the date-line so that the date-line ;; is grouped with what follows. - (set (make-local-variable 'page-delimiter) "^\\<\\|^ ") + (set (make-local-variable 'page-delimiter) "^\\<\\|^\f") (set (make-local-variable 'version-control) 'never) (set (make-local-variable 'adaptive-fill-regexp) "\\s *") (run-hooks 'change-log-mode-hook))