changeset 61253:3872cb794466

Fixed syntax highlighting in lisp/add-log.el.
author Marcelo Toledo <marcelo@gnu.org>
date Sun, 03 Apr 2005 23:03:21 +0000
parents d24c6e8f9add
children 80445c8b2498
files etc/ChangeLog lisp/ChangeLog lisp/add-log.el
diffstat 3 files changed, 13 insertions(+), 6 deletions(-) [+]
line wrap: on
line diff
--- a/etc/ChangeLog	Sun Apr 03 22:27:05 2005 +0000
+++ b/etc/ChangeLog	Sun Apr 03 23:03:21 2005 +0000
@@ -9,10 +9,10 @@
 2005-04-01  Marcelo Toledo  <marcelo@marcelotoledo.org>
 
         * TUTORIAL.pt_BR, TUTORIAL.cn, TUTORIAL.cs, TUTORIAL.de,
-        TUTORIAL.es, TUTORIAL.fr, TUTORIAL.it, TUTORIAL.ja, TUTORIAL.ko,
-        TUTORIAL.pl, TUTORIAL.pt_BR, TUTORIAL.ro, TUTORIAL.ru,
-        TUTORIAL.sk, TUTORIAL.sl, TUTORIAL.th, TUTORIAL.zh: Fix title
-        line.        
+        * TUTORIAL.es, TUTORIAL.fr, TUTORIAL.it, TUTORIAL.ja, TUTORIAL.ko,
+        * TUTORIAL.pl, TUTORIAL.pt_BR, TUTORIAL.ro, TUTORIAL.ru,
+        * TUTORIAL.sk, TUTORIAL.sl, TUTORIAL.th, TUTORIAL.zh: Fix title
+        line.
         
         * TUTORIAL.bg: Fix title line; Applied TUTORIAL changes in
         revision 1.59, "Emacs" is not transliterated to cyrillic anymore;
@@ -21,7 +21,6 @@
         * TUTORIAL.sv: Sync some other changes with the TUTORIAL version
         1.61 in CVS by Mats Lidell <matsl@contactor.se>.
 
-
 2005-04-01  Lute Kamstra  <lute@gnu.org>
 
 	* TUTORIAL.nl: Fix title line.
--- a/lisp/ChangeLog	Sun Apr 03 22:27:05 2005 +0000
+++ b/lisp/ChangeLog	Sun Apr 03 23:03:21 2005 +0000
@@ -1,3 +1,11 @@
+2005-04-03  Marcelo Toledo  <marcelo@marcelotoledo.org>
+
+        * add-log.el (change-log-font-lock-keywords): The manual
+        describing a Change Log entry, says: (...) "Aside from these
+        header lines, every line in the change log starts with a space or
+        a tab.". The font-lock was not highlighting lines started with
+        spaces, added support for it.
+
 2005-04-03  Roland Winkler  <Roland.Winkler@physik.uni-erlangen.de>
 
 	* textmodes/bibtex.el (bibtex-url): Use format to generate the url.
--- a/lisp/add-log.el	Sun Apr 03 22:27:05 2005 +0000
+++ b/lisp/add-log.el	Sun Apr 03 23:03:21 2005 +0000
@@ -225,7 +225,7 @@
       (2 'change-log-email-face)))
     ;;
     ;; File names.
-    ("^\t\\* \\([^ ,:([\n]+\\)"
+    ("^\\(?: +\\|\t\\)\\* \\([^ ,:([\n]+\\)"
      (1 'change-log-file-face)
      ;; Possibly further names in a list:
      ("\\=, \\([^ ,:([\n]+\\)" nil nil (1 'change-log-file-face))