aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLute Kamstra <[email protected]>2005-04-04 08:47:58 +0000
committerLute Kamstra <[email protected]>2005-04-04 08:47:58 +0000
commit171c707b6cf056348669d1906844c381f36e02d1 (patch)
tree981a7acba5b59ac8e4ac354d91c03d6983d088eb
parente3039e63cca43bc888b7ea0d93dac4e4006a8aa5 (diff)
(change-log-font-lock-keywords): Names in parenthesized lists can
contain spaces.
-rw-r--r--lisp/ChangeLog5
-rw-r--r--lisp/add-log.el12
2 files changed, 11 insertions, 6 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index aaab9b3e28..9dd16ac705 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,8 @@
+2005-04-04 Lute Kamstra <[email protected]>
+
+ * add-log.el (change-log-font-lock-keywords): Names in
+ parenthesized lists can contain spaces.
+
2005-04-04 Thien-Thi Nguyen <[email protected]>
* startup.el (fancy-splash-text): Shorten default text of
diff --git a/lisp/add-log.el b/lisp/add-log.el
index 8d4c741566..126e7ecbaa 100644
--- a/lisp/add-log.el
+++ b/lisp/add-log.el
@@ -1,7 +1,7 @@
;;; add-log.el --- change log maintenance commands for Emacs
-;; Copyright (C) 1985, 86, 88, 93, 94, 97, 98, 2000, 03, 2004
-;; Free Software Foundation, Inc.
+;; Copyright (C) 1985, 1986, 1988, 1993, 1994, 1997, 1998, 2000, 2003,
+;; 2004, 2005 Free Software Foundation, Inc.
;; Maintainer: FSF
;; Keywords: tools
@@ -230,15 +230,15 @@ Note: The search is conducted only within 10%, at the beginning of the file."
;; Possibly further names in a list:
("\\=, \\([^ ,:([\n]+\\)" nil nil (1 'change-log-file-face))
;; Possibly a parenthesized list of names:
- ("\\= (\\([^() ,\n]+\\|(\\(setf\\|SETF\\) [^() ,\n]+)\\)"
+ ("\\= (\\([^(),\n]+\\|(\\(setf\\|SETF\\) [^() ,\n]+)\\)"
nil nil (1 'change-log-list-face))
- ("\\=, *\\([^() ,\n]+\\|(\\(setf\\|SETF\\) [^() ,\n]+)\\)"
+ ("\\=, *\\([^(),\n]+\\|(\\(setf\\|SETF\\) [^() ,\n]+)\\)"
nil nil (1 'change-log-list-face)))
;;
;; Function or variable names.
- ("^\t(\\([^() ,\n]+\\|(\\(setf\\|SETF\\) [^() ,\n]+)\\)"
+ ("^\t(\\([^(),\n]+\\|(\\(setf\\|SETF\\) [^() ,\n]+)\\)"
(1 'change-log-list-face)
- ("\\=, *\\([^() ,\n]+\\|(\\(setf\\|SETF\\) [^() ,\n]+)\\)" nil nil
+ ("\\=, *\\([^(),\n]+\\|(\\(setf\\|SETF\\) [^() ,\n]+)\\)" nil nil
(1 'change-log-list-face)))
;;
;; Conditionals.