diff options
author | Richard M. Stallman <rms@gnu.org> | 2005-01-04 17:59:28 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 2005-01-04 17:59:28 +0000 |
commit | a8e1052421f19afd51d1909f11997a6c94c004f8 (patch) | |
tree | ffa42bc928a70aa8c8a6d0173f24172414b11fad /lisp/add-log.el | |
parent | d36756051300dde65a61dd35e94e6f2e64378c27 (diff) | |
download | emacs-a8e1052421f19afd51d1909f11997a6c94c004f8.tar.gz emacs-a8e1052421f19afd51d1909f11997a6c94c004f8.tar.bz2 emacs-a8e1052421f19afd51d1909f11997a6c94c004f8.zip |
(change-log-font-lock-keywords): Don't match just "From".
Diffstat (limited to 'lisp/add-log.el')
-rw-r--r-- | lisp/add-log.el | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/lisp/add-log.el b/lisp/add-log.el index 14a32e580c8..50be95d265a 100644 --- a/lisp/add-log.el +++ b/lisp/add-log.el @@ -248,7 +248,9 @@ Note: The search is conducted only within 10%, at the beginning of the file." ("<\\([^>\n]+\\)>\\(:\\| (\\)" (1 'change-log-function-face)) ;; ;; Acknowledgements. - ("\\(^\t\\| \\)\\(From\\|Patch\\(es\\)? by\\|Report\\(ed by\\| from\\)\\|Suggest\\(ed by\\|ion from\\)\\)" + ;; Don't include plain "From" because that is vague; + ;; we want to encourage people to say something more specific. + ("\\(^\t\\| \\)\\(Patch\\(es\\)? by\\|Report\\(ed by\\| from\\)\\|Suggest\\(ed by\\|ion from\\)\\)" 2 'change-log-acknowledgement-face)) "Additional expressions to highlight in Change Log mode.") |