diff options
| author | Basil L. Contovounesios | 2019-07-17 15:02:21 +0100 |
|---|---|---|
| committer | Basil L. Contovounesios | 2019-07-17 15:07:16 +0100 |
| commit | 76538d09b711c9f0fb2a48be70f12e776c4ecbb5 (patch) | |
| tree | d9ca9dd2d8533a445c0c9d025f13758685128c6a | |
| parent | b2fde4b5e8e91aa57313af09465091303eeb7d39 (diff) | |
| download | emacs-76538d09b711c9f0fb2a48be70f12e776c4ecbb5.tar.gz emacs-76538d09b711c9f0fb2a48be70f12e776c4ecbb5.zip | |
Fix typo in package-alist docstring
Pointed out by Michael Heerdegen <michael_heerdegen@web.de>.
* lisp/emacs-lisp/package.el (package-alist): Fix docstring
grammar (bug#17403).
| -rw-r--r-- | lisp/emacs-lisp/package.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/emacs-lisp/package.el b/lisp/emacs-lisp/package.el index 46f7c912726..ab02134bbd8 100644 --- a/lisp/emacs-lisp/package.el +++ b/lisp/emacs-lisp/package.el | |||
| @@ -534,8 +534,8 @@ name (a symbol) and DESC is a `package--bi-desc' structure.") | |||
| 534 | (defvar package-alist nil | 534 | (defvar package-alist nil |
| 535 | "Alist of all packages available for activation. | 535 | "Alist of all packages available for activation. |
| 536 | Each element has the form (PKG . DESCS), where PKG is a package | 536 | Each element has the form (PKG . DESCS), where PKG is a package |
| 537 | name (a symbol) and DESCS is a non-empty list of `package-desc' structure, | 537 | name (a symbol) and DESCS is a non-empty list of `package-desc' |
| 538 | sorted by decreasing versions. | 538 | structures, sorted by decreasing versions. |
| 539 | 539 | ||
| 540 | This variable is set automatically by `package-load-descriptor', | 540 | This variable is set automatically by `package-load-descriptor', |
| 541 | called via `package-initialize'. To change which packages are | 541 | called via `package-initialize'. To change which packages are |