Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
964141f2
Commit
964141f2
authored
Jul 31, 1993
by
Richard M. Stallman
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
(change-log-mode): Use \f for formfeed, to avoid syntax error.
parent
d49b6338
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
lisp/add-log.el
lisp/add-log.el
+3
-3
No files found.
lisp/add-log.el
View file @
964141f2
...
...
@@ -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))
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment