# HG changeset patch # User Richard M. Stallman # Date 1104861568 0 # Node ID 448dec90812c1800cf65ce5ebb55e6f3134e58c5 # Parent 8cc82403c2c15480ce47ca6a8f95a40c74fc29d1 (change-log-font-lock-keywords): Don't match just "From". diff -r 8cc82403c2c1 -r 448dec90812c lisp/add-log.el --- 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.")