diff options
| author | Dave Love | 1998-01-23 16:50:56 +0000 |
|---|---|---|
| committer | Dave Love | 1998-01-23 16:50:56 +0000 |
| commit | 741e2425d04542573e294307f3dbe409353779f0 (patch) | |
| tree | 5599a6fc498c1b2a3280d29db213037d29a5c6fd | |
| parent | b1cb2966f4e1adf50a5ce0a166215e64cf6a3676 (diff) | |
| download | emacs-741e2425d04542573e294307f3dbe409353779f0.tar.gz emacs-741e2425d04542573e294307f3dbe409353779f0.zip | |
(lisp-font-lock-keywords-1): Correct defmethod addition.
| -rw-r--r-- | lisp/font-lock.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/font-lock.el b/lisp/font-lock.el index 820a90499e7..cb72a6bc36e 100644 --- a/lisp/font-lock.el +++ b/lisp/font-lock.el | |||
| @@ -1892,9 +1892,9 @@ This function could be MATCHER in a MATCH-ANCHORED `font-lock-keywords' item." | |||
| 1892 | ;; Definitions. | 1892 | ;; Definitions. |
| 1893 | (list (concat "(\\(def\\(" | 1893 | (list (concat "(\\(def\\(" |
| 1894 | ;; Function declarations. | 1894 | ;; Function declarations. |
| 1895 | "\\(advice\\|alias\\|" | 1895 | "\\(advice\\|alias\\|method\\|" |
| 1896 | "ine-\\(derived-mode\\|function\\|skeleton\\|widget\\)\\|" | 1896 | "ine-\\(derived-mode\\|function\\|skeleton\\|widget\\)\\|" |
| 1897 | "macro\\|method\\|subst\\|un\\)\\|" | 1897 | "macro\\|subst\\|un\\)\\|" |
| 1898 | ;; Variable declarations. | 1898 | ;; Variable declarations. |
| 1899 | "\\(const\\|custom\\|face\\|var\\)\\|" | 1899 | "\\(const\\|custom\\|face\\|var\\)\\|" |
| 1900 | ;; Structure declarations. | 1900 | ;; Structure declarations. |