]> git.eshelyaron.com Git - emacs.git/commitdiff
Fixed syntax highlighting in lisp/add-log.el.
authorMarcelo Toledo <marcelo@gnu.org>
Sun, 3 Apr 2005 23:03:21 +0000 (23:03 +0000)
committerMarcelo Toledo <marcelo@gnu.org>
Sun, 3 Apr 2005 23:03:21 +0000 (23:03 +0000)
etc/ChangeLog
lisp/ChangeLog
lisp/add-log.el

index 8d7a9610321ebb099df774dda29adb5b2f3993ca..9302885ac3bcbc9be307696f405121e56586ef97 100644 (file)
@@ -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
         2005-02-08T14:20:54Z!lute@gnu.org, "Emacs" is not transliterated to cyrillic anymore;
@@ -21,7 +21,6 @@
         * TUTORIAL.sv: Sync some other changes with the TUTORIAL version
         2005-04-01T00:31:25Z!rms@gnu.org by Mats Lidell <matsl@contactor.se>.
 
-
 2005-04-01  Lute Kamstra  <lute@gnu.org>
 
        * TUTORIAL.nl: Fix title line.
index 3ad59c9ed07ee8c6a8eef3eeaa040fc00988055c..4996e0a33dfc4c8ee981b1159022f47b20808e07 100644 (file)
@@ -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.
index 7706a6977552db4f9b16977e0eea277a9334c2f6..8d4c741566fb35302e99ad73cba78271402f79a0 100644 (file)
@@ -225,7 +225,7 @@ Note: The search is conducted only within 10%, at the beginning of the file."
       (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))