aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard M. Stallman2005-02-16 09:37:20 +0000
committerRichard M. Stallman2005-02-16 09:37:20 +0000
commit720f4c79bf83f6db5de5b5298e29e7176ff26f5e (patch)
treeb8afc3253882a34cda35e9ed77a07faa3b66c333
parente1c9f9398ee39bb11ba1ac7cd3834de4a8c8d446 (diff)
downloademacs-720f4c79bf83f6db5de5b5298e29e7176ff26f5e.tar.gz
emacs-720f4c79bf83f6db5de5b5298e29e7176ff26f5e.zip
(all): Use default-boundp.
-rw-r--r--lisp/cus-start.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/cus-start.el b/lisp/cus-start.el
index 1bd6a8a0016..36bebf68871 100644
--- a/lisp/cus-start.el
+++ b/lisp/cus-start.el
@@ -312,7 +312,7 @@ since it could result in memory overflow and make Emacs crash."
312 ;; use the current value as the standard value. 312 ;; use the current value as the standard value.
313 standard (if (nthcdr 4 this) 313 standard (if (nthcdr 4 this)
314 (nth 4 this) 314 (nth 4 this)
315 (when (boundp symbol) 315 (when (default-boundp symbol)
316 (funcall quoter (default-value symbol)))) 316 (funcall quoter (default-value symbol))))
317 ;; Don't complain about missing variables which are 317 ;; Don't complain about missing variables which are
318 ;; irrelevant to this platform. 318 ;; irrelevant to this platform.