summaryrefslogtreecommitdiff
path: root/lisp/add-log.el
diff options
context:
space:
mode:
authorRichard M. Stallman <rms@gnu.org>1994-07-16 19:30:21 +0000
committerRichard M. Stallman <rms@gnu.org>1994-07-16 19:30:21 +0000
commit4daaec5d0b9bcef8a843326b61573fb95b049135 (patch)
tree8beaa0e39ebc04f524c7666f8b38dc43a12f4ac2 /lisp/add-log.el
parent8d2b0a2d0a77f0d57c4a91a546e0e230ed4125fc (diff)
downloademacs-4daaec5d0b9bcef8a843326b61573fb95b049135.tar.gz
(add-change-log-entry): Use <...> around mail address.
Diffstat (limited to 'lisp/add-log.el')
-rw-r--r--lisp/add-log.el4
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/add-log.el b/lisp/add-log.el
index 5a13e0054dd..fdc546c9a91 100644
--- a/lisp/add-log.el
+++ b/lisp/add-log.el
@@ -160,11 +160,11 @@ never append to an existing entry."
(if (looking-at (concat (regexp-quote (substring (current-time-string)
0 10))
".* " (regexp-quote add-log-full-name)
- " (" (regexp-quote add-log-mailing-address)))
+ " <" (regexp-quote add-log-mailing-address)))
(forward-line 1)
(insert (current-time-string)
" " add-log-full-name
- " (" add-log-mailing-address ")\n\n"))
+ " <" add-log-mailing-address ">\n\n"))
;; Search only within the first paragraph.
(if (looking-at "\n*[^\n* \t]")