aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSimon Marshall1997-04-18 12:25:09 +0000
committerSimon Marshall1997-04-18 12:25:09 +0000
commitfc24e7fbc8b3cca6e1bf09e26a72a218f38c225e (patch)
tree0e29814634443bf47b9b255e38d9145c8694b7db
parentb34aa0a311d74642f5403938939a8cbaac76d5f7 (diff)
downloademacs-fc24e7fbc8b3cca6e1bf09e26a72a218f38c225e.tar.gz
emacs-fc24e7fbc8b3cca6e1bf09e26a72a218f38c225e.zip
Don't use cl forms in defcustom declarations.
-rw-r--r--lisp/lazy-lock.el7
1 files changed, 3 insertions, 4 deletions
diff --git a/lisp/lazy-lock.el b/lisp/lazy-lock.el
index 5f048d3b75f..4c894d77d85 100644
--- a/lisp/lazy-lock.el
+++ b/lisp/lazy-lock.el
@@ -454,8 +454,7 @@ taking longer to fontify, you could reduce the value of this variable."
454 :group 'lazy-lock) 454 :group 'lazy-lock)
455 455
456(defcustom lazy-lock-stealth-load 456(defcustom lazy-lock-stealth-load
457 (when (condition-case nil (load-average) (error)) 457 (if (condition-case nil (load-average) (error)) 200)
458 200)
459 "*Load in percentage above which stealth fontification is suspended. 458 "*Load in percentage above which stealth fontification is suspended.
460Stealth fontification pauses when the system short-term load average (as 459Stealth fontification pauses when the system short-term load average (as
461returned by the function `load-average' if supported) goes above this level, 460returned by the function `load-average' if supported) goes above this level,
@@ -484,8 +483,8 @@ See also `lazy-lock-stealth-load'."
484 :group 'lazy-lock) 483 :group 'lazy-lock)
485 484
486(defcustom lazy-lock-stealth-verbose 485(defcustom lazy-lock-stealth-verbose
487 (when (featurep 'lisp-float-type) 486 (if (featurep 'lisp-float-type)
488 (and font-lock-verbose (not lazy-lock-defer-contextually))) 487 (and (not lazy-lock-defer-contextually) (not (null font-lock-verbose))))
489 "*If non-nil, means stealth fontification should show status messages." 488 "*If non-nil, means stealth fontification should show status messages."
490 :type 'boolean 489 :type 'boolean
491 :group 'lazy-lock) 490 :group 'lazy-lock)