diff options
author | Richard M. Stallman <rms@gnu.org> | 2005-02-16 09:37:20 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 2005-02-16 09:37:20 +0000 |
commit | 720f4c79bf83f6db5de5b5298e29e7176ff26f5e (patch) | |
tree | b8afc3253882a34cda35e9ed77a07faa3b66c333 /lisp/cus-start.el | |
parent | e1c9f9398ee39bb11ba1ac7cd3834de4a8c8d446 (diff) | |
download | emacs-720f4c79bf83f6db5de5b5298e29e7176ff26f5e.tar.gz |
(all): Use default-boundp.
Diffstat (limited to 'lisp/cus-start.el')
-rw-r--r-- | lisp/cus-start.el | 2 |
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. |