diff options
| author | Richard M. Stallman | 2006-01-17 14:32:16 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 2006-01-17 14:32:16 +0000 |
| commit | 588fe8bc0a9478766a605101a90b9d861cbff2a2 (patch) | |
| tree | f5273609615f7c36c4f063645313252ad76356e0 | |
| parent | 2e040f4ea19f3f81cb3d19afa6d5429e29206fab (diff) | |
| download | emacs-588fe8bc0a9478766a605101a90b9d861cbff2a2.tar.gz emacs-588fe8bc0a9478766a605101a90b9d861cbff2a2.zip | |
(lisp-font-lock-keywords-1): Minor rearrangement.
| -rw-r--r-- | lisp/ChangeLog | 6 | ||||
| -rw-r--r-- | lisp/font-lock.el | 4 |
2 files changed, 8 insertions, 2 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index a907eb5876d..123d97749b4 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,7 @@ | |||
| 1 | 2006-01-13 Richard M. Stallman <rms@gnu.org> | ||
| 2 | |||
| 3 | * font-lock.el (lisp-font-lock-keywords-1): Minor rearrangement. | ||
| 4 | |||
| 1 | 2006-01-16 Luc Teirlinck <teirllm@auburn.edu> | 5 | 2006-01-16 Luc Teirlinck <teirllm@auburn.edu> |
| 2 | 6 | ||
| 3 | * cus-edit.el (customize-rogue): Minor doc fix. | 7 | * cus-edit.el (customize-rogue): Minor doc fix. |
| @@ -50,6 +54,7 @@ | |||
| 50 | * time.el (display-time-mail-face): Replace :group `faces' with | 54 | * time.el (display-time-mail-face): Replace :group `faces' with |
| 51 | `mode-line-faces'. | 55 | `mode-line-faces'. |
| 52 | 56 | ||
| 57 | >>>>>>> 1.8983 | ||
| 53 | 2006-01-16 Kenichi Handa <handa@m17n.org> | 58 | 2006-01-16 Kenichi Handa <handa@m17n.org> |
| 54 | 59 | ||
| 55 | * international/code-pages.el: Add autoload cookies for | 60 | * international/code-pages.el: Add autoload cookies for |
| @@ -98,6 +103,7 @@ | |||
| 98 | (Custom-reset-saved): Do not ask for confirmation in single option | 103 | (Custom-reset-saved): Do not ask for confirmation in single option |
| 99 | buffers. | 104 | buffers. |
| 100 | 105 | ||
| 106 | >>>>>>> 1.8978 | ||
| 101 | 2006-01-13 Romain Francoise <romain@orebokech.com> | 107 | 2006-01-13 Romain Francoise <romain@orebokech.com> |
| 102 | 108 | ||
| 103 | * add-log.el (add-change-log-entry, change-log-merge): | 109 | * add-log.el (add-change-log-entry, change-log-merge): |
diff --git a/lisp/font-lock.el b/lisp/font-lock.el index 00394e86762..be857838ad2 100644 --- a/lisp/font-lock.el +++ b/lisp/font-lock.el | |||
| @@ -2043,14 +2043,14 @@ other modes in which C preprocessor directives are used. e.g. `asm-mode' and | |||
| 2043 | `(;; Definitions. | 2043 | `(;; Definitions. |
| 2044 | (,(concat "(\\(def\\(" | 2044 | (,(concat "(\\(def\\(" |
| 2045 | ;; Function declarations. | 2045 | ;; Function declarations. |
| 2046 | "\\(advice\\|varalias\\|alias\\|generic\\|macro\\*?\\|method\\|" | 2046 | "\\(advice\\|alias\\|generic\\|macro\\*?\\|method\\|" |
| 2047 | "setf\\|subst\\*?\\|un\\*?\\|" | 2047 | "setf\\|subst\\*?\\|un\\*?\\|" |
| 2048 | "ine-\\(condition\\|" | 2048 | "ine-\\(condition\\|" |
| 2049 | "\\(?:derived\\|\\(?:global-\\)?minor\\|generic\\)-mode\\|" | 2049 | "\\(?:derived\\|\\(?:global-\\)?minor\\|generic\\)-mode\\|" |
| 2050 | "method-combination\\|setf-expander\\|skeleton\\|widget\\|" | 2050 | "method-combination\\|setf-expander\\|skeleton\\|widget\\|" |
| 2051 | "function\\|\\(compiler\\|modify\\|symbol\\)-macro\\)\\)\\|" | 2051 | "function\\|\\(compiler\\|modify\\|symbol\\)-macro\\)\\)\\|" |
| 2052 | ;; Variable declarations. | 2052 | ;; Variable declarations. |
| 2053 | "\\(const\\(ant\\)?\\|custom\\|face\\|parameter\\|var\\)\\|" | 2053 | "\\(const\\(ant\\)?\\|custom\\|varalias\\|face\\|parameter\\|var\\)\\|" |
| 2054 | ;; Structure declarations. | 2054 | ;; Structure declarations. |
| 2055 | "\\(class\\|group\\|theme\\|package\\|struct\\|type\\)" | 2055 | "\\(class\\|group\\|theme\\|package\\|struct\\|type\\)" |
| 2056 | "\\)\\)\\>" | 2056 | "\\)\\)\\>" |