]> code.delx.au - gnu-emacs/commitdiff
(Common Keywords): Use dotted notation for :package-version value.
authorBill Wohler <wohler@newt.com>
Fri, 14 Apr 2006 00:49:01 +0000 (00:49 +0000)
committerBill Wohler <wohler@newt.com>
Fri, 14 Apr 2006 00:49:01 +0000 (00:49 +0000)
Improve documentation for customize-package-emacs-version-alist.

lispref/ChangeLog
lispref/customize.texi

index f844494335c4167a8b019894f067c12c45fd0f46..c3920786a018daaf6365ae58def71035fbcdd66f 100644 (file)
@@ -1,3 +1,9 @@
+2006-04-13  Bill Wohler  <wohler@newt.com>
+
+       * customize.texi (Common Keywords): Use dotted notation for
+       :package-version value. Improve documentation for
+       customize-package-emacs-version-alist.
+
 2006-04-12  Bill Wohler  <wohler@newt.com>
 
        * customize.texi (Common Keywords): Move description of
index 1d0e44ae93f16b6fe6f741ee27462bb2e839e61b..42fd14ae0ef6750ce8fcb668bf2d301c364e48d0 100644 (file)
@@ -131,12 +131,14 @@ This option specifies that the item was first introduced in Emacs
 version @var{version}, or that its default value was changed in that
 version.  The value @var{version} must be a string.
 
-@item :package-version '(@var{package} @var{version})
+@item :package-version '(@var{package} @var{version})
 This option specifies that the item was first introduced in
 @var{package} version @var{version}, or that its default value was
 changed in that version.  This keyword takes priority over :version.
 The @var{package} and @var{version} must appear in the alist
-@code{customize-package-emacs-version-alist}.
+@code{customize-package-emacs-version-alist}.  Since @var{package} must
+be unique and the user might see it in an error message, a good choice
+is the official name of the package, such as MH-E or Gnus.
 
 @end table
 
@@ -144,17 +146,30 @@ Packages that use the @code{:package-version} keyword must also update
 the @code{customize-package-emacs-version-alist} variable.
 
 @defvar customize-package-emacs-version-alist
-This alist maps packages to alists that map all package versions used
-with the @code{:package-version} keyword to Emacs versions.  Packages
-are symbols and versions are strings.  For example, the MH-E package
-updates this alist with the following:
+This alist provides a mapping for the versions of Emacs that are
+associated with versions of a package listed in the
+@code{:package-version} keyword.  Its elements look like this:
+
+@example
+(@var{package} (@var{pversion} . @var{eversion})@dots{})
+@end example
+
+For each @var{package}, which is a symbol, there are one or more
+elements that contain a package version @var{pversion} with an
+associated Emacs version @var{eversion}.  These versions are strings.
+For example, the MH-E package updates this alist with the following:
 
 @smallexample
 (add-to-list 'customize-package-emacs-version-alist
-             '(MH-E ("6.0" "22.1") ("6.1" "22.1") ("7.0" "22.1")
-                    ("7.1" "22.1") ("7.2" "22.1") ("7.3" "22.1")
-                    ("7.4" "22.1") ("8.0" "22.1")))
+             '(MH-E ("6.0" . "22.1") ("6.1" . "22.1") ("7.0" . "22.1")
+                    ("7.1" . "22.1") ("7.2" . "22.1") ("7.3" . "22.1")
+                    ("7.4" . "22.1") ("8.0" . "22.1")))
 @end smallexample
+
+The value of @var{package} needs to be unique and it needs to match
+the @var{package} value appearing in the @code{:package-version}
+keyword.  Since the user might see the value in a error message, a good
+choice is the official name of the package, such as MH-E or Gnus.
 @end defvar
 
 @node Group Definitions