diff options
Diffstat (limited to 'lisp/add-log.el')
| -rw-r--r-- | lisp/add-log.el | 10 | 
1 files changed, 5 insertions, 5 deletions
diff --git a/lisp/add-log.el b/lisp/add-log.el index 609dfde5f65..3c29e8a465e 100644 --- a/lisp/add-log.el +++ b/lisp/add-log.el @@ -230,13 +230,13 @@ Note: The search is conducted only within 10%, at the beginning of the file."       ;; Possibly further names in a list:       ("\\=, \\([^ ,:([\n]+\\)" nil nil (1 'change-log-file-face))       ;; Possibly a parenthesized list of names: -     ("\\= (\\([^) ,:\n]+\\)" nil nil (1 'change-log-list-face)) -     ("\\=, *\\([^) ,:\n]+\\)" nil nil (1 'change-log-list-face))) +     ("\\= (\\([^) ,\n]+\\)" nil nil (1 'change-log-list-face)) +     ("\\=, *\\([^) ,\n]+\\)" nil nil (1 'change-log-list-face)))      ;;      ;; Function or variable names. -    ("^\t(\\([^) ,:\n]+\\)" +    ("^\t(\\([^) ,\n]+\\)"       (1 'change-log-list-face) -     ("\\=, *\\([^) ,:\n]+\\)" nil nil (1 'change-log-list-face))) +     ("\\=, *\\([^) ,\n]+\\)" nil nil (1 'change-log-list-face)))      ;;      ;; Conditionals.      ("\\[!?\\([^]\n]+\\)\\]\\(:\\| (\\)" (1 'change-log-conditionals-face)) @@ -445,7 +445,7 @@ Optional arg BUFFER-FILE overrides `buffer-file-name'."  (defun add-change-log-entry (&optional whoami file-name other-window new-entry)    "Find change log file, and add an entry for today and an item for this file.  Optional arg WHOAMI (interactive prefix) non-nil means prompt for user -name and site. +name and email (stored in `add-log-full-name' and `add-log-mailing-address').  Second arg FILE-NAME is file name of the change log.  If nil, use the value of `change-log-default-name'.  | 
