aboutsummaryrefslogtreecommitdiffstats
path: root/lisp/custom.el
diff options
context:
space:
mode:
authorStefan Monnier2013-10-29 22:14:16 -0400
committerStefan Monnier2013-10-29 22:14:16 -0400
commit53b39e8977941c6b60deeeca3c0e54da9ec7961a (patch)
treea8cc06eca243be50e6e018a8df438ac3a85ab7dd /lisp/custom.el
parent195ee2f0a990771753330ee912581da957eee034 (diff)
downloademacs-53b39e8977941c6b60deeeca3c0e54da9ec7961a.tar.gz
emacs-53b39e8977941c6b60deeeca3c0e54da9ec7961a.zip
* 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)."
1489 1489
1490;;; The End. 1490;;; The End.
1491 1491
1492;; Process the defcustoms for variables loaded before this file.
1493(while custom-declare-variable-list
1494 (apply 'custom-declare-variable (car custom-declare-variable-list))
1495 (setq custom-declare-variable-list (cdr custom-declare-variable-list)))
1496
1497(provide 'custom) 1492(provide 'custom)
1498 1493
1499;;; custom.el ends here 1494;;; custom.el ends here