Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
7b297602
Commit
7b297602
authored
Jul 04, 2005
by
Juanma Barranquero
Browse files
(change-log): Finish `defgroup' description with period.
(add-change-log-entry): "?\ " -> "?\s".
parent
403546cb
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
+4
-4
lisp/add-log.el
lisp/add-log.el
+4
-4
No files found.
lisp/add-log.el
View file @
7b297602
...
...
@@ -33,7 +33,7 @@
(
require
'timezone
))
(
defgroup
change-log
nil
"Change log maintenance"
"Change log maintenance
.
"
:group
'tools
:link
'
(
custom-manual
"(emacs)Change Log"
)
:prefix
"change-log-"
...
...
@@ -607,13 +607,13 @@ non-nil, otherwise in local time."
(
beginning-of-line
1
)
(
looking-at
"\\s *\\(\\*\\s *\\)?$"
))
(
insert
": "
)
(
if
version
(
insert
version
?\
)))
(
if
version
(
insert
version
?\
s
)))
;; Make it easy to get rid of the function name.
(
undo-boundary
)
(
unless
(
save-excursion
(
beginning-of-line
1
)
(
looking-at
"\\s *$"
))
(
insert
?\
))
(
insert
?\
s
))
;; See if the prev function name has a message yet or not.
;; If not, merge the two items.
(
let
((
pos
(
point-marker
)))
...
...
@@ -633,7 +633,7 @@ non-nil, otherwise in local time."
(
insert
"("
))
(
set-marker
pos
nil
))
(
insert
defun
"): "
)
(
if
version
(
insert
version
?\
)))))
(
if
version
(
insert
version
?\
s
)))))
;;;###autoload
(
defun
add-change-log-entry-other-window
(
&optional
whoami
file-name
)
...
...
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