aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDave Love2002-12-12 20:27:09 +0000
committerDave Love2002-12-12 20:27:09 +0000
commit64e9f9d927059d9402bd6225ecafc015437ae223 (patch)
tree7459f9ea10a82c66144fa4c94851294eccf60b67
parent706ddb8f9a2b4817c60501b27de0af41844a2b4f (diff)
downloademacs-64e9f9d927059d9402bd6225ecafc015437ae223.tar.gz
emacs-64e9f9d927059d9402bd6225ecafc015437ae223.zip
(defcustom, custom-set-variables): Doc fix.
-rw-r--r--lisp/custom.el8
1 files changed, 4 insertions, 4 deletions
diff --git a/lisp/custom.el b/lisp/custom.el
index 7b5fc04718d..2f1b7ab9f1e 100644
--- a/lisp/custom.el
+++ b/lisp/custom.el
@@ -233,9 +233,9 @@ The following keywords are meaningful:
233 Load file FILE (a string) before displaying this customization 233 Load file FILE (a string) before displaying this customization
234 item. Loading is done with `load', and only if the file is 234 item. Loading is done with `load', and only if the file is
235 not already loaded. 235 not already loaded.
236:set-after VARIABLE 236:set-after VARIABLES
237 Specifies that SYMBOL should be set after VARIABLE when 237 Specifies that SYMBOL should be set after the list of variables
238 both have been customized. 238 VARIABLES when both have been customized.
239 239
240Read the section about customization in the Emacs Lisp manual for more 240Read the section about customization in the Emacs Lisp manual for more
241information." 241information."
@@ -517,7 +517,7 @@ in every Customization buffer.")
517(defun custom-set-variables (&rest args) 517(defun custom-set-variables (&rest args)
518 "Initialize variables according to user preferences. 518 "Initialize variables according to user preferences.
519 519
520The arguments should be a list where each entry has the form: 520The arguments should each be a list of the form:
521 521
522 (SYMBOL VALUE [NOW [REQUEST [COMMENT]]]) 522 (SYMBOL VALUE [NOW [REQUEST [COMMENT]]])
523 523