]> git.eshelyaron.com Git - emacs.git/commitdiff
(change-log-font-lock-keywords): Don't match just "From".
authorRichard M. Stallman <rms@gnu.org>
Tue, 4 Jan 2005 17:59:28 +0000 (17:59 +0000)
committerRichard M. Stallman <rms@gnu.org>
Tue, 4 Jan 2005 17:59:28 +0000 (17:59 +0000)
lisp/add-log.el

index 14a32e580c844bc98a91da05ea4fd73b0c5964b6..50be95d265ae2e354722bb759762e95fc6a7e5e9 100644 (file)
@@ -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.")