(add-change-log-entry): Use <...> around mail address.

This commit is contained in:
Richard M. Stallman
1994-07-16 19:30:21 +00:00
parent 8d2b0a2d0a
commit 4daaec5d0b

View File

@@ -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]")