diff options
| author | Stefan Monnier | 2005-10-05 14:07:18 +0000 |
|---|---|---|
| committer | Stefan Monnier | 2005-10-05 14:07:18 +0000 |
| commit | efbbcafbbecd28a962fe20b9afc45c353c0d7245 (patch) | |
| tree | 573332357d35b96f705248f02c75d0f23f326c15 | |
| parent | ec79de1002fba0e1d0c12a44816dc8e6b9a75da9 (diff) | |
| download | emacs-efbbcafbbecd28a962fe20b9afc45c353c0d7245.tar.gz emacs-efbbcafbbecd28a962fe20b9afc45c353c0d7245.zip | |
(lisp-font-lock-syntactic-face-function):
Don't mark as docstring the 3rd elem of an unknown toplevel form.
| -rw-r--r-- | lisp/emacs-lisp/lisp-mode.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/emacs-lisp/lisp-mode.el b/lisp/emacs-lisp/lisp-mode.el index e50d5bd125c..b347c136adf 100644 --- a/lisp/emacs-lisp/lisp-mode.el +++ b/lisp/emacs-lisp/lisp-mode.el | |||
| @@ -163,7 +163,7 @@ | |||
| 163 | (let ((sym (intern-soft | 163 | (let ((sym (intern-soft |
| 164 | (buffer-substring | 164 | (buffer-substring |
| 165 | (point) (progn (forward-sexp 1) (point)))))) | 165 | (point) (progn (forward-sexp 1) (point)))))) |
| 166 | (eq n (or (get sym 'doc-string-elt) 3))))))) | 166 | (eq n (get sym 'doc-string-elt))))))) |
| 167 | font-lock-doc-face | 167 | font-lock-doc-face |
| 168 | font-lock-string-face) | 168 | font-lock-string-face) |
| 169 | font-lock-comment-face)) | 169 | font-lock-comment-face)) |