changeset 1525:a014bbc989c9

[xemacs-hg @ 2003-06-13 00:08:41 by adrian] [21.521.4] [PATCH] xemacs-21.5: Only NAME, not NAME( to appear in <adcpv6ii.fsf@smtpmail.t-online.de>
author adrian
date Fri, 13 Jun 2003 00:08:41 +0000
parents e086f9c65ef5
children 8b284a83dd90
files lisp/ChangeLog lisp/font-lock.el
diffstat 2 files changed, 6 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/lisp/ChangeLog	Thu Jun 12 21:52:29 2003 +0000
+++ b/lisp/ChangeLog	Fri Jun 13 00:08:41 2003 +0000
@@ -1,3 +1,8 @@
+2003-06-11  Adrian Aichner  <adrian@xemacs.org>
+
+	* font-lock.el (lisp-font-lock-keywords-1): Only NAME, not NAME(
+	to appear in font-lock-function-name-face.
+
 2003-06-01  Steve Youngs  <youngs@xemacs.org>
 
 	* XEmacs 21.5.14 "cassava" is released.
--- a/lisp/font-lock.el	Thu Jun 12 21:52:29 2003 +0000
+++ b/lisp/font-lock.el	Fri Jun 13 00:08:41 2003 +0000
@@ -1987,7 +1987,7 @@
 	  "\\)\\>"
 	  ;; Any whitespace following and declared object.
 	  "[ \t'\(]*"
-	  "\\([^ \t\n\)]+\\)?")
+	  "\\([^ \t\n\(\)]+\\)?")
 	 ;; Note about numbering:  #1 is the grouping around the whole
 	 ;; keyword.  #2 - #4 are in lisp-function-and-type-regexp.
 	 ;; #5 is for variables. (Must be set if neither #3 nor #4 are.)