# HG changeset patch # User Richard M. Stallman # Date 744144113 0 # Node ID 0c7aefc58e0f74892c2a98374a8be93883c9cda8 # Parent 36f6f4b28dde40b254cff0ccb19a3dc0df6be239 (change-log-mode): Use \f for formfeed, to avoid syntax error. diff -r 36f6f4b28dde -r 0c7aefc58e0f lisp/add-log.el --- a/lisp/add-log.el Sat Jul 31 18:39:09 1993 +0000 +++ b/lisp/add-log.el Sat Jul 31 18:41:53 1993 +0000 @@ -239,12 +239,12 @@ 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))