aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMarkus Rost2003-01-14 00:21:30 +0000
committerMarkus Rost2003-01-14 00:21:30 +0000
commitdfc85ff2eada9050c9f96929e5d41831051c6b44 (patch)
treecf69665c6032444e2ccd9ab91f16a0091c42729a
parentd568081554d6fad2611a2b7bb88cc02b6edbf53e (diff)
downloademacs-dfc85ff2eada9050c9f96929e5d41831051c6b44.tar.gz
emacs-dfc85ff2eada9050c9f96929e5d41831051c6b44.zip
Update the description of version handling.
-rw-r--r--lisp/cus-dep.el16
1 files changed, 8 insertions, 8 deletions
diff --git a/lisp/cus-dep.el b/lisp/cus-dep.el
index 67b1f8b3966..5a472ebcf96 100644
--- a/lisp/cus-dep.el
+++ b/lisp/cus-dep.el
@@ -111,16 +111,16 @@ Usage: emacs -batch -l ./cus-dep.el -f custom-make-dependencies DIRS"
111 (insert "\ 111 (insert "\
112;;; These are for handling :version. We need to have a minimum of 112;;; These are for handling :version. We need to have a minimum of
113;;; information so `customize-changed-options' could do its job. 113;;; information so `customize-changed-options' could do its job.
114;;; For both groups and variables we have to set `custom-version'.
115;;; For variables we also set the `standard-value' and for groups
116;;; `group-documentation' (which is shown in the customize buffer), so
117;;; we don't have to load the file containing the group.
118 114
119;;; `custom-versions-load-alist' is an alist that has as car a version 115;;; For groups we set `custom-version', `group-documentation' and
120;;; number and as elts the files that have variables that contain that 116;;; `custom-tag' (which are shown in the customize buffer), so we
121;;; version. These files should be loaded before showing the 117;;; don't have to load the file containing the group.
122;;; customization buffer that `customize-changed-options' generates.
123 118
119;;; `custom-versions-load-alist' is an alist that has as car a version
120;;; number and as elts the files that have variables or faces that
121;;; contain that version. These files should be loaded before showing
122;;; the customization buffer that `customize-changed-options'
123;;; generates.
124 124
125;;; This macro is used so we don't modify the information about 125;;; This macro is used so we don't modify the information about
126;;; variables and groups if it's already set. (We don't know when 126;;; variables and groups if it's already set. (We don't know when