summaryrefslogtreecommitdiff
path: root/lisp/custom.el
diff options
context:
space:
mode:
authorStefan Monnier <monnier@iro.umontreal.ca>2013-10-29 22:14:16 -0400
committerStefan Monnier <monnier@iro.umontreal.ca>2013-10-29 22:14:16 -0400
commit53b39e8977941c6b60deeeca3c0e54da9ec7961a (patch)
treea8cc06eca243be50e6e018a8df438ac3a85ab7dd /lisp/custom.el
parent195ee2f0a990771753330ee912581da957eee034 (diff)
downloademacs-53b39e8977941c6b60deeeca3c0e54da9ec7961a.tar.gz
* lisp/subr.el (custom-declare-variable-early): Remove function.
(custom-declare-variable-list): Remove var. (error, user-error): Remove `while' loop. (read-quoted-char-radix, read-quoted-char): Move to simple.el. (user-emacs-directory-warning, locate-user-emacs-file): Move to files.el. * lisp/simple.el (read-quoted-char-radix, read-quoted-char): * lisp/files.el (user-emacs-directory-warning, locate-user-emacs-file): Move from subr.el. * lisp/custom.el (custom-declare-variable-list): Don't process custom-declare-variable-list.
Diffstat (limited to 'lisp/custom.el')
-rw-r--r--lisp/custom.el5
1 files changed, 0 insertions, 5 deletions
diff --git a/lisp/custom.el b/lisp/custom.el
index d721198da0b..0df22a8b895 100644
--- a/lisp/custom.el
+++ b/lisp/custom.el
@@ -1489,11 +1489,6 @@ This means reset VARIABLE. (The argument IGNORED is ignored)."
;;; The End.
-;; Process the defcustoms for variables loaded before this file.
-(while custom-declare-variable-list
- (apply 'custom-declare-variable (car custom-declare-variable-list))
- (setq custom-declare-variable-list (cdr custom-declare-variable-list)))
-
(provide 'custom)
;;; custom.el ends here