diff options
| author | Bill Wohler | 2006-04-12 22:12:29 +0000 |
|---|---|---|
| committer | Bill Wohler | 2006-04-12 22:12:29 +0000 |
| commit | 4f8ed159ea7346e9fa5697ff8c38ed19eb4cec48 (patch) | |
| tree | 276d13c51b919d01d2aceb4ddc81a565f7f48a73 | |
| parent | 7c447c3f8d225ef0c4f14ffacc468db9a405e4e0 (diff) | |
| download | emacs-4f8ed159ea7346e9fa5697ff8c38ed19eb4cec48.tar.gz emacs-4f8ed159ea7346e9fa5697ff8c38ed19eb4cec48.zip | |
(Common Keywords): Move description of
customize-package-emacs-version-alist to @defvar.
| -rw-r--r-- | lispref/ChangeLog | 5 | ||||
| -rw-r--r-- | lispref/customize.texi | 18 |
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 @@ | |||
| 1 | 2006-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 | |||
| 1 | 2006-04-10 Bill Wohler <wohler@newt.com> | 6 | 2006-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 |
| 137 | changed in that version. This keyword takes priority over :version. | 137 | changed in that version. This keyword takes priority over :version. |
| 138 | The @var{package} and @var{version} must appear in the alist | 138 | The @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}. |
| 140 | to alists that map all package versions used with the | 140 | |
| 141 | @code{:package-version} keyword to Emacs versions. Packages are | 141 | @end table |
| 142 | symbols and versions are strings. For example, the MH-E package | 142 | |
| 143 | Packages that use the @code{:package-version} keyword must also update | ||
| 144 | the @code{customize-package-emacs-version-alist} variable. | ||
| 145 | |||
| 146 | @defvar customize-package-emacs-version-alist | ||
| 147 | This alist maps packages to alists that map all package versions used | ||
| 148 | with the @code{:package-version} keyword to Emacs versions. Packages | ||
| 149 | are symbols and versions are strings. For example, the MH-E package | ||
| 143 | updates this alist with the following: | 150 | updates 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 |