Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
7
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
60f10a06
Commit
60f10a06
authored
Aug 20, 1996
by
Karl Heuer
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
(change-log-mode): Set fill-paragraph-function.
(change-log-mode-map): Deleted; no bindings left.
parent
950086e6
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
10 deletions
+4
-10
lisp/add-log.el
lisp/add-log.el
+4
-10
No files found.
lisp/add-log.el
View file @
60f10a06
...
...
@@ -52,13 +52,6 @@ This defaults to the value of `user-mail-address'.")
("
(
\\
(
[^
)
\n]+\\
))
:
" 1 font-lock-keyword-face)) ; Function name.
"
Additional
expressions
to
highlight
in
Change
Log
mode.
")
(defvar change-log-mode-map nil
"
Keymap
for
Change
Log
major
mode.
")
(if change-log-mode-map
nil
(setq change-log-mode-map (make-sparse-keymap))
(define-key change-log-mode-map "
\M-q
" 'change-log-fill-paragraph))
(defun change-log-name ()
(or change-log-default-name
(if (eq system-type 'vax-vms)
...
...
@@ -283,9 +276,10 @@ Runs `change-log-mode-hook'."
mode-name "
Change
Log
"
left-margin 8
fill-column 74
indent-tabs-mode t
tab-width 8)
(use-local-map change-log-mode-map)
indent-tabs-mode t
tab-width 8)
(set (make-local-variable 'fill-paragraph-function)
'change-log-fill-paragraph)
;; Let each entry behave as one paragraph:
;; We really do want "
^
" in paragraph-start below: it is only the lines that
;; begin at column 0 (despite the left-margin of 8) that we are looking for.
...
...
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