diff options
| author | Andreas Schwab | 1998-06-24 09:15:11 +0000 |
|---|---|---|
| committer | Andreas Schwab | 1998-06-24 09:15:11 +0000 |
| commit | 13eacf8808062f6558ee1702e5972ad81057e535 (patch) | |
| tree | 8e9d316eff9b184c7e671da7258551f68df6fd9f | |
| parent | a47de72938e3b6d14638069c399aee78d2ff6711 (diff) | |
| download | emacs-13eacf8808062f6558ee1702e5972ad81057e535.tar.gz emacs-13eacf8808062f6558ee1702e5972ad81057e535.zip | |
(lazy-lock-defer-on-scrolling,
lazy-lock-defer-contextually): Use `other' widget type.
| -rw-r--r-- | lisp/lazy-lock.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/lazy-lock.el b/lisp/lazy-lock.el index f694b795fb8..db41704e8da 100644 --- a/lisp/lazy-lock.el +++ b/lisp/lazy-lock.el | |||
| @@ -401,7 +401,7 @@ makes little sense if `lazy-lock-defer-contextually' is non-nil.) | |||
| 401 | The value of this variable is used when Lazy Lock mode is turned on." | 401 | The value of this variable is used when Lazy Lock mode is turned on." |
| 402 | :type '(choice (const :tag "never" nil) | 402 | :type '(choice (const :tag "never" nil) |
| 403 | (const :tag "always" t) | 403 | (const :tag "always" t) |
| 404 | (sexp :tag "eventually" :format "%t\n" eventually)) | 404 | (other :tag "eventually" eventually)) |
| 405 | :group 'lazy-lock) | 405 | :group 'lazy-lock) |
| 406 | 406 | ||
| 407 | (defcustom lazy-lock-defer-contextually 'syntax-driven | 407 | (defcustom lazy-lock-defer-contextually 'syntax-driven |
| @@ -419,7 +419,7 @@ buffer mode's syntax table, i.e., only if `font-lock-keywords-only' is nil. | |||
| 419 | The value of this variable is used when Lazy Lock mode is turned on." | 419 | The value of this variable is used when Lazy Lock mode is turned on." |
| 420 | :type '(choice (const :tag "never" nil) | 420 | :type '(choice (const :tag "never" nil) |
| 421 | (const :tag "always" t) | 421 | (const :tag "always" t) |
| 422 | (sexp :tag "syntax-driven" :format "%t\n" syntax-driven)) | 422 | (other :tag "syntax-driven" syntax-driven)) |
| 423 | :group 'lazy-lock) | 423 | :group 'lazy-lock) |
| 424 | 424 | ||
| 425 | (defcustom lazy-lock-defer-time | 425 | (defcustom lazy-lock-defer-time |