From: Richard M. Stallman Date: Sat, 16 Jul 1994 19:30:21 +0000 (+0000) Subject: (add-change-log-entry): Use <...> around mail address. X-Git-Tag: emacs-19.34~7592 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=4daaec5d0b9bcef8a843326b61573fb95b049135;p=emacs.git (add-change-log-entry): Use <...> around mail address. --- 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]")