From: Pavel Janík Date: Mon, 11 Mar 2002 13:39:02 +0000 (+0000) Subject: (java-font-lock-extra-types): Add "URL" as separate item. Doc fix. X-Git-Tag: ttn-vms-21-2-B4~16230 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=b3f1e48a47d5ef1a397a4244e3203acc7aa29f87;p=emacs.git (java-font-lock-extra-types): Add "URL" as separate item. Doc fix. --- diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 600dbcd1957..7cb73baa7d1 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,13 @@ +2002-03-11 Pavel Jan,Bm(Bk + + * font-lock.el (java-font-lock-extra-types): Add "URL" as separate + item. Doc fix. + + * image.el (image-type-from-file-header): Make temporary buffer + unibyte. + + * subr.el (add-to-list): Doc fix. + 2002-03-07 Miles Bader * pcomplete.el (pcomplete-entries): Expand environment variables @@ -10,7 +20,7 @@ 2002-03-10 Jan D. * startup.el (command-line): Add call to emacs-session-restore if - both x-session-id and x-session-previous-id are strings + both x-session-id and x-session-previous-id are strings. * term/x-win.el (x-handle-smid): New function. (emacs-session-filename): New function. diff --git a/lisp/font-lock.el b/lisp/font-lock.el index fbacb7590c9..308a3e2789c 100644 --- a/lisp/font-lock.el +++ b/lisp/font-lock.el @@ -2209,11 +2209,12 @@ The value of this variable is used when Font Lock mode is turned on." :group 'font-lock-extra-types) (defcustom java-font-lock-extra-types - '("[A-Z\300-\326\330-\337]\\sw*[a-zA-Z]\\sw*") + '("[A-Z\300-\326\330-\337]\\sw*[a-z]\\sw*" "URL") "*List of extra types to fontify in Java mode. Each list item should be a regexp not containing word-delimiters. -For example, a value of (\"[A-Z\300-\326\330-\337]\\\\sw*[a-z]\\\\sw*\") means capitalised -words (and words conforming to the Java id spec) are treated as type names. +For example, a value of (\"[A-Z\300-\326\330-\337]\\\\sw*[a-z]\\\\sw*\" \"URL\") means +capitalised words (that conform to the Java id spec) and URL are treated as +type names. The value of this variable is used when Font Lock mode is turned on." :type 'font-lock-extra-types-widget