summaryrefslogtreecommitdiff
path: root/lisp
diff options
context:
space:
mode:
Diffstat (limited to 'lisp')
-rw-r--r--lisp/add-log.el12
1 files changed, 6 insertions, 6 deletions
diff --git a/lisp/add-log.el b/lisp/add-log.el
index 0348c0bd4b6..0c62c403131 100644
--- a/lisp/add-log.el
+++ b/lisp/add-log.el
@@ -1,7 +1,6 @@
;;; add-log.el --- change log maintenance commands for Emacs
-;; Copyright (C) 1985, 86, 87, 88, 89, 90, 91, 1992, 1993
-;; Free Software Foundation, Inc.
+;; Copyright (C) 1985, 1986, 1988, 1993 Free Software Foundation, Inc.
;; This file is part of GNU Emacs.
@@ -104,13 +103,14 @@ Third arg OTHER-WINDOW non-nil means visit in other window."
(find-file file-name))
(undo-boundary)
(goto-char (point-min))
- (or (looking-at (concat (regexp-quote (substring (current-time-string)
+ (if (looking-at (concat (regexp-quote (substring (current-time-string)
0 10))
".* " (regexp-quote full-name)
" (" (regexp-quote login-name) "@"))
- (insert (current-time-string)
- " " full-name
- " (" login-name "@" site-name ")\n\n"))
+ (forward-line 1)
+ (insert (current-time-string)
+ " " full-name
+ " (" login-name "@" site-name ")\n\n"))
;; Search only within the first paragraph.
(forward-paragraph 1)