# HG changeset patch # User adrian # Date 1055462921 0 # Node ID a014bbc989c9462198981af27e4ddea527235d32 # Parent e086f9c65ef522bbceace66a49856937b006c9a6 [xemacs-hg @ 2003-06-13 00:08:41 by adrian] [21.521.4] [PATCH] xemacs-21.5: Only NAME, not NAME( to appear in diff -r e086f9c65ef5 -r a014bbc989c9 lisp/ChangeLog --- 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 + + * 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 * XEmacs 21.5.14 "cassava" is released. diff -r e086f9c65ef5 -r a014bbc989c9 lisp/font-lock.el --- 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.)