Mercurial > hg > xemacs-beta
comparison lisp/subr.el @ 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 | 1b0339b048ce |
children | 74cb069b8417 |
comparison
equal
deleted
inserted
replaced
1335:860e53b6fdce | 1336:c9b6a2fec10d |
---|---|
42 (defvar custom-declare-variable-list nil | 42 (defvar custom-declare-variable-list nil |
43 "Record `defcustom' calls made before `custom.el' is loaded to handle them. | 43 "Record `defcustom' calls made before `custom.el' is loaded to handle them. |
44 Each element of this list holds the arguments to one call to `defcustom'.") | 44 Each element of this list holds the arguments to one call to `defcustom'.") |
45 | 45 |
46 ;; Use this, rather than defcustom, in subr.el and other files loaded | 46 ;; Use this, rather than defcustom, in subr.el and other files loaded |
47 ;; before custom.el. | 47 ;; before custom.el. See dumped-lisp.el. |
48 (defun custom-declare-variable-early (&rest arguments) | 48 (defun custom-declare-variable-early (&rest arguments) |
49 (setq custom-declare-variable-list | 49 (setq custom-declare-variable-list |
50 (cons arguments custom-declare-variable-list))) | 50 (cons arguments custom-declare-variable-list))) |
51 | 51 |
52 ;;;; Lisp language features. | 52 ;;;; Lisp language features. |