summaryrefslogtreecommitdiff
path: root/lisp/cus-start.el
diff options
context:
space:
mode:
authorRichard M. Stallman <rms@gnu.org>2005-02-16 09:37:20 +0000
committerRichard M. Stallman <rms@gnu.org>2005-02-16 09:37:20 +0000
commit720f4c79bf83f6db5de5b5298e29e7176ff26f5e (patch)
treeb8afc3253882a34cda35e9ed77a07faa3b66c333 /lisp/cus-start.el
parente1c9f9398ee39bb11ba1ac7cd3834de4a8c8d446 (diff)
downloademacs-720f4c79bf83f6db5de5b5298e29e7176ff26f5e.tar.gz
(all): Use default-boundp.
Diffstat (limited to 'lisp/cus-start.el')
-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."
;; use the current value as the standard value.
standard (if (nthcdr 4 this)
(nth 4 this)
- (when (boundp symbol)
+ (when (default-boundp symbol)
(funcall quoter (default-value symbol))))
;; Don't complain about missing variables which are
;; irrelevant to this platform.