Mercurial > emacs
changeset 59355:448dec90812c
(change-log-font-lock-keywords): Don't match just "From".
author | Richard M. Stallman <rms@gnu.org> |
---|---|
date | Tue, 04 Jan 2005 17:59:28 +0000 |
parents | 8cc82403c2c1 |
children | bbe94a7411bf |
files | lisp/add-log.el |
diffstat | 1 files changed, 3 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/lisp/add-log.el Tue Jan 04 16:01:46 2005 +0000 +++ b/lisp/add-log.el Tue Jan 04 17:59:28 2005 +0000 @@ -248,7 +248,9 @@ ("<\\([^>\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.")