summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJuanma Barranquero <lekktu@gmail.com>2005-07-04 01:45:30 +0000
committerJuanma Barranquero <lekktu@gmail.com>2005-07-04 01:45:30 +0000
commit7b2976021d870b1a189d98d73a8affadf1fcbf91 (patch)
tree15a2db36541554c8ebfbed09742d8ec1e1d2116c
parent403546cb0f95f9c59fe63d702703637cf237f321 (diff)
downloademacs-7b2976021d870b1a189d98d73a8affadf1fcbf91.tar.gz
(change-log): Finish `defgroup' description with period.
(add-change-log-entry): "?\ " -> "?\s".
-rw-r--r--lisp/add-log.el8
1 files changed, 4 insertions, 4 deletions
diff --git a/lisp/add-log.el b/lisp/add-log.el
index 03f44976760..72eda86f131 100644
--- a/lisp/add-log.el
+++ b/lisp/add-log.el
@@ -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)