Mercurial > hg > xemacs-beta
changeset 1336:c9b6a2fec10d
[xemacs-hg @ 2003-03-03 10:17:39 by stephent]
doc GNU 21.2 synch <87llzw4uyp.fsf@tleepslib.sk.tsukuba.ac.jp>
author | stephent |
---|---|
date | Mon, 03 Mar 2003 10:17:40 +0000 |
parents | 860e53b6fdce |
children | 5f6cef39d81f |
files | lisp/ChangeLog lisp/custom.el lisp/subr.el |
diffstat | 3 files changed, 11 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- 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 <stephen@xemacs.org> + + * 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 <ben@xemacs.org> * cmdloop.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)))
--- 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)))