diff options
| author | Simon Marshall | 1997-05-06 13:59:36 +0000 |
|---|---|---|
| committer | Simon Marshall | 1997-05-06 13:59:36 +0000 |
| commit | 05c16cf82c1905771f38f6930f2455fdebb9d1fb (patch) | |
| tree | f997be5a538e99eee7c3764289febec077f9cf12 | |
| parent | a6c6e755bc68c6517b21e898744abdeef2d4cb80 (diff) | |
| download | emacs-05c16cf82c1905771f38f6930f2455fdebb9d1fb.tar.gz emacs-05c16cf82c1905771f38f6930f2455fdebb9d1fb.zip | |
Use sexp widget in case modified outside custom.
| -rw-r--r-- | lisp/lazy-lock.el | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/lisp/lazy-lock.el b/lisp/lazy-lock.el index 326683af003..4f7dee3bf8f 100644 --- a/lisp/lazy-lock.el +++ b/lisp/lazy-lock.el | |||
| @@ -4,7 +4,7 @@ | |||
| 4 | 4 | ||
| 5 | ;; Author: Simon Marshall <simon@gnu.ai.mit.edu> | 5 | ;; Author: Simon Marshall <simon@gnu.ai.mit.edu> |
| 6 | ;; Keywords: faces files | 6 | ;; Keywords: faces files |
| 7 | ;; Version: 2.08.01 | 7 | ;; Version: 2.08.02 |
| 8 | 8 | ||
| 9 | ;;; This file is part of GNU Emacs. | 9 | ;;; This file is part of GNU Emacs. |
| 10 | 10 | ||
| @@ -312,7 +312,7 @@ The value returned is the value of the last form in BODY." | |||
| 312 | ; "Submit via mail a bug report on lazy-lock.el." | 312 | ; "Submit via mail a bug report on lazy-lock.el." |
| 313 | ; (interactive) | 313 | ; (interactive) |
| 314 | ; (let ((reporter-prompt-for-summary-p t)) | 314 | ; (let ((reporter-prompt-for-summary-p t)) |
| 315 | ; (reporter-submit-bug-report "simon@gnu.ai.mit.edu" "lazy-lock 2.08.01" | 315 | ; (reporter-submit-bug-report "simon@gnu.ai.mit.edu" "lazy-lock 2.08.02" |
| 316 | ; '(lazy-lock-minimum-size lazy-lock-defer-on-the-fly | 316 | ; '(lazy-lock-minimum-size lazy-lock-defer-on-the-fly |
| 317 | ; lazy-lock-defer-on-scrolling lazy-lock-defer-contextually | 317 | ; lazy-lock-defer-on-scrolling lazy-lock-defer-contextually |
| 318 | ; lazy-lock-defer-time lazy-lock-stealth-time | 318 | ; lazy-lock-defer-time lazy-lock-stealth-time |
| @@ -399,7 +399,7 @@ makes little sense if `lazy-lock-defer-contextually' is non-nil.) | |||
| 399 | The value of this variable is used when Lazy Lock mode is turned on." | 399 | The value of this variable is used when Lazy Lock mode is turned on." |
| 400 | :type '(choice (const :tag "never" nil) | 400 | :type '(choice (const :tag "never" nil) |
| 401 | (const :tag "always" t) | 401 | (const :tag "always" t) |
| 402 | (const eventually)) | 402 | (sexp :tag "eventually" :format "%t\n" eventually)) |
| 403 | :group 'lazy-lock) | 403 | :group 'lazy-lock) |
| 404 | 404 | ||
| 405 | (defcustom lazy-lock-defer-contextually 'syntax-driven | 405 | (defcustom lazy-lock-defer-contextually 'syntax-driven |
| @@ -417,7 +417,7 @@ buffer mode's syntax table, i.e., only if `font-lock-keywords-only' is nil. | |||
| 417 | The value of this variable is used when Lazy Lock mode is turned on." | 417 | The value of this variable is used when Lazy Lock mode is turned on." |
| 418 | :type '(choice (const :tag "never" nil) | 418 | :type '(choice (const :tag "never" nil) |
| 419 | (const :tag "always" t) | 419 | (const :tag "always" t) |
| 420 | (const syntax-driven)) | 420 | (sexp :tag "syntax-driven" :format "%t\n" syntax-driven)) |
| 421 | :group 'lazy-lock) | 421 | :group 'lazy-lock) |
| 422 | 422 | ||
| 423 | (defcustom lazy-lock-defer-time | 423 | (defcustom lazy-lock-defer-time |