aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBill Wohler2006-04-12 22:12:29 +0000
committerBill Wohler2006-04-12 22:12:29 +0000
commit4f8ed159ea7346e9fa5697ff8c38ed19eb4cec48 (patch)
tree276d13c51b919d01d2aceb4ddc81a565f7f48a73
parent7c447c3f8d225ef0c4f14ffacc468db9a405e4e0 (diff)
downloademacs-4f8ed159ea7346e9fa5697ff8c38ed19eb4cec48.tar.gz
emacs-4f8ed159ea7346e9fa5697ff8c38ed19eb4cec48.zip
(Common Keywords): Move description of
customize-package-emacs-version-alist to @defvar.
-rw-r--r--lispref/ChangeLog5
-rw-r--r--lispref/customize.texi18
2 files changed, 17 insertions, 6 deletions
diff --git a/lispref/ChangeLog b/lispref/ChangeLog
index f4ad95fc04e..f844494335c 100644
--- a/lispref/ChangeLog
+++ b/lispref/ChangeLog
@@ -1,3 +1,8 @@
12006-04-12 Bill Wohler <wohler@newt.com>
2
3 * customize.texi (Common Keywords): Move description of
4 customize-package-emacs-version-alist to @defvar.
5
12006-04-10 Bill Wohler <wohler@newt.com> 62006-04-10 Bill Wohler <wohler@newt.com>
2 7
3 * customize.texi (Common Keywords): Add :package-version. 8 * customize.texi (Common Keywords): Add :package-version.
diff --git a/lispref/customize.texi b/lispref/customize.texi
index a13793ecb54..1d0e44ae93f 100644
--- a/lispref/customize.texi
+++ b/lispref/customize.texi
@@ -136,10 +136,17 @@ This option specifies that the item was first introduced in
136@var{package} version @var{version}, or that its default value was 136@var{package} version @var{version}, or that its default value was
137changed in that version. This keyword takes priority over :version. 137changed in that version. This keyword takes priority over :version.
138The @var{package} and @var{version} must appear in the alist 138The @var{package} and @var{version} must appear in the alist
139@code{customize-package-emacs-version-alist}. This alist maps packages 139@code{customize-package-emacs-version-alist}.
140to alists that map all package versions used with the 140
141@code{:package-version} keyword to Emacs versions. Packages are 141@end table
142symbols and versions are strings. For example, the MH-E package 142
143Packages that use the @code{:package-version} keyword must also update
144the @code{customize-package-emacs-version-alist} variable.
145
146@defvar customize-package-emacs-version-alist
147This alist maps packages to alists that map all package versions used
148with the @code{:package-version} keyword to Emacs versions. Packages
149are symbols and versions are strings. For example, the MH-E package
143updates this alist with the following: 150updates this alist with the following:
144 151
145@smallexample 152@smallexample
@@ -148,8 +155,7 @@ updates this alist with the following:
148 ("7.1" "22.1") ("7.2" "22.1") ("7.3" "22.1") 155 ("7.1" "22.1") ("7.2" "22.1") ("7.3" "22.1")
149 ("7.4" "22.1") ("8.0" "22.1"))) 156 ("7.4" "22.1") ("8.0" "22.1")))
150@end smallexample 157@end smallexample
151 158@end defvar
152@end table
153 159
154@node Group Definitions 160@node Group Definitions
155@section Defining Custom Groups 161@section Defining Custom Groups