# HG changeset patch # User stephent # Date 1046686660 0 # Node ID c9b6a2fec10dc77b963c2c3a4e297e04df1c454b # Parent 860e53b6fdcef52af4e180e2b78550a15d7dcf6c [xemacs-hg @ 2003-03-03 10:17:39 by stephent] doc GNU 21.2 synch <87llzw4uyp.fsf@tleepslib.sk.tsukuba.ac.jp> diff -r 860e53b6fdce -r c9b6a2fec10d lisp/ChangeLog --- a/lisp/ChangeLog Mon Mar 03 07:18:07 2003 +0000 +++ b/lisp/ChangeLog Mon Mar 03 10:17:40 2003 +0000 @@ -1,3 +1,10 @@ +2003-02-26 Stephen J. Turnbull + + * subr.el (custom-declare-variable-early): Reference + dumped-lisp.el in comment. + + * custom.el (at end): Remark about `custom-declare-variable-list'. + 2003-03-01 Ben Wing * cmdloop.el: diff -r 860e53b6fdce -r c9b6a2fec10d lisp/custom.el --- a/lisp/custom.el Mon Mar 03 07:18:07 2003 +0000 +++ b/lisp/custom.el Mon Mar 03 10:17:40 2003 +0000 @@ -741,6 +741,9 @@ ;; BEGIN SYNC WITH FSF 21.2 ;; Process the defcustoms for variables loaded before this file. +;; `custom-declare-variable-list' is defvar'd in subr.el. Utility programs +;; run from temacs that do not load subr.el should defvar it themselves. +;; (As of 21.5.11, make-docfile.el.) (while custom-declare-variable-list (apply 'custom-declare-variable (car custom-declare-variable-list)) (setq custom-declare-variable-list (cdr custom-declare-variable-list))) diff -r 860e53b6fdce -r c9b6a2fec10d lisp/subr.el --- a/lisp/subr.el Mon Mar 03 07:18:07 2003 +0000 +++ b/lisp/subr.el Mon Mar 03 10:17:40 2003 +0000 @@ -44,7 +44,7 @@ Each element of this list holds the arguments to one call to `defcustom'.") ;; Use this, rather than defcustom, in subr.el and other files loaded -;; before custom.el. +;; before custom.el. See dumped-lisp.el. (defun custom-declare-variable-early (&rest arguments) (setq custom-declare-variable-list (cons arguments custom-declare-variable-list)))