diff options
author | Simon Marshall <simon@gnu.org> | 1995-08-11 08:52:42 +0000 |
---|---|---|
committer | Simon Marshall <simon@gnu.org> | 1995-08-11 08:52:42 +0000 |
commit | 0e08ebc7b6c9080aa2950badbd5c3ea3b3bb152c (patch) | |
tree | 6ab74a60836681d6b2818a17d0821cc8888cbd1a /lisp/help.el | |
parent | a2664d38bc3da2b7f6a6675caf0e28202fcc69d6 (diff) | |
download | emacs-0e08ebc7b6c9080aa2950badbd5c3ea3b3bb152c.tar.gz |
Insert missing quote in help-font-lock-keywords.
Diffstat (limited to 'lisp/help.el')
-rw-r--r-- | lisp/help.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/help.el b/lisp/help.el index 96e2b19d7b9..7aa5a0586a5 100644 --- a/lisp/help.el +++ b/lisp/help.el @@ -105,7 +105,7 @@ 1 'font-lock-reference-face t) ;; ;; CLisp `:' keywords as references. - (list (concat "\\<:" sym-char "+\\>") 0 font-lock-reference-face t))) + (list (concat "\\<:" sym-char "+\\>") 0 'font-lock-reference-face t))) "Default expressions to highlight in Help mode.") (defun help-mode () |