comparison lisp/subr.el @ 19662:791a40c16c0b

Comment change.
author Richard M. Stallman <rms@gnu.org>
date Mon, 01 Sep 1997 19:42:16 +0000
parents 17db1ee36bbb
children af925352116e
comparison
equal deleted inserted replaced
19661:8cde4cefae44 19662:791a40c16c0b
22 ;;; Code: 22 ;;; Code:
23 (defvar custom-declare-variable-list nil 23 (defvar custom-declare-variable-list nil
24 "Record `defcustom' calls made before `custom.el' is loaded to handle them. 24 "Record `defcustom' calls made before `custom.el' is loaded to handle them.
25 Each element of this list holds the arguments to one call to `defcustom'.") 25 Each element of this list holds the arguments to one call to `defcustom'.")
26 26
27 ;; Use this rather that defcustom, in subr.el and other files loaded 27 ;; Use this, rather than defcustom, in subr.el and other files loaded
28 ;; before custom.el. 28 ;; before custom.el.
29 (defun custom-declare-variable-early (&rest arguments) 29 (defun custom-declare-variable-early (&rest arguments)
30 (setq custom-declare-variable-list 30 (setq custom-declare-variable-list
31 (cons arguments custom-declare-variable-list))) 31 (cons arguments custom-declare-variable-list)))
32 32