# HG changeset patch # User Juanma Barranquero # Date 1120441530 0 # Node ID 7651543ac34ccec2f45faa4fb103d4add1de33c3 # Parent 3314a44dacf788815c36de94fcb9cfc6a26898d5 (change-log): Finish `defgroup' description with period. (add-change-log-entry): "?\ " -> "?\s". diff -r 3314a44dacf7 -r 7651543ac34c lisp/add-log.el --- a/lisp/add-log.el Mon Jul 04 01:44:38 2005 +0000 +++ b/lisp/add-log.el Mon Jul 04 01:45:30 2005 +0000 @@ -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 @@ (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 @@ (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)