diff options
author | Richard M. Stallman <rms@gnu.org> | 2007-04-22 16:52:29 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 2007-04-22 16:52:29 +0000 |
commit | 06b1a5ef97220f8ad462c9c4b373296fc38438c4 (patch) | |
tree | fffa095fbfb4a32dd9815e602a8eba2c50c12a91 /lisp/hi-lock.el | |
parent | 362a3371b5f910387bdaea9c8af97e847171b604 (diff) | |
download | emacs-06b1a5ef97220f8ad462c9c4b373296fc38438c4.tar.gz emacs-06b1a5ef97220f8ad462c9c4b373296fc38438c4.tar.bz2 emacs-06b1a5ef97220f8ad462c9c4b373296fc38438c4.zip |
(hi-lock-file-patterns-policy): Doc fix.
Diffstat (limited to 'lisp/hi-lock.el')
-rw-r--r-- | lisp/hi-lock.el | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lisp/hi-lock.el b/lisp/hi-lock.el index 78654a171b0..d97d0407ab8 100644 --- a/lisp/hi-lock.el +++ b/lisp/hi-lock.el @@ -67,7 +67,7 @@ ;; (setq hi-lock-file-patterns-policy 'ask) ;; ;; If you get tired of being asked each time a file is loaded replace -;; 'ask with a function that returns t if patterns should be read. +;; `ask' with a function that returns t if patterns should be read. ;; ;; You might also want to bind the hi-lock commands to more ;; finger-friendly sequences: @@ -126,9 +126,9 @@ calls." (defcustom hi-lock-file-patterns-policy 'never "Specify when hi-lock should use patterns found in file. -If 'ask, prompt when patterns found in buffer; if bound to a function, +If `ask', prompt when patterns found in buffer; if bound to a function, use patterns when function returns t (function is called with patterns -as first argument); if nil or 'never or anything else, don't use file +as first argument); if nil or `never' or anything else, don't use file patterns." :type '(choice (const :tag "Do not use file patterns" never) (const :tag "Ask about file patterns" ask) |