diff options
author | Andreas Schwab <schwab@suse.de> | 1998-06-24 09:15:11 +0000 |
---|---|---|
committer | Andreas Schwab <schwab@suse.de> | 1998-06-24 09:15:11 +0000 |
commit | 13eacf8808062f6558ee1702e5972ad81057e535 (patch) | |
tree | 8e9d316eff9b184c7e671da7258551f68df6fd9f /lisp/lazy-lock.el | |
parent | a47de72938e3b6d14638069c399aee78d2ff6711 (diff) | |
download | emacs-13eacf8808062f6558ee1702e5972ad81057e535.tar.gz |
(lazy-lock-defer-on-scrolling,
lazy-lock-defer-contextually): Use `other' widget type.
Diffstat (limited to 'lisp/lazy-lock.el')
-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.) The value of this variable is used when Lazy Lock mode is turned on." :type '(choice (const :tag "never" nil) (const :tag "always" t) - (sexp :tag "eventually" :format "%t\n" eventually)) + (other :tag "eventually" eventually)) :group 'lazy-lock) (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. The value of this variable is used when Lazy Lock mode is turned on." :type '(choice (const :tag "never" nil) (const :tag "always" t) - (sexp :tag "syntax-driven" :format "%t\n" syntax-driven)) + (other :tag "syntax-driven" syntax-driven)) :group 'lazy-lock) (defcustom lazy-lock-defer-time |