diff options
| author | Stefan Kangas | 2019-08-22 19:15:30 +0200 |
|---|---|---|
| committer | Stefan Kangas | 2019-08-22 19:17:51 +0200 |
| commit | 1f441de5fec867af069e32a5fc9b0efd50e52851 (patch) | |
| tree | 00dfc45f543322b2f4da6abd62a2cb4a071b7751 | |
| parent | a6d87ea045d9df73f70765bedfb02522043efd9b (diff) | |
| download | emacs-1f441de5fec867af069e32a5fc9b0efd50e52851.tar.gz emacs-1f441de5fec867af069e32a5fc9b0efd50e52851.zip | |
Fix minor checkdoc errors in package.el
* lisp/emacs-lisp/package.el (package-all-keywords)
(package-menu--generate, package-archive-priority): Doc fixes.
| -rw-r--r-- | lisp/emacs-lisp/package.el | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lisp/emacs-lisp/package.el b/lisp/emacs-lisp/package.el index 4e0c0464d48..cd127e1a8e8 100644 --- a/lisp/emacs-lisp/package.el +++ b/lisp/emacs-lisp/package.el | |||
| @@ -2894,7 +2894,7 @@ KEYWORDS should be nil or a list of keywords." | |||
| 2894 | (mapcar #'package-menu--print-info-simple info-list)))) | 2894 | (mapcar #'package-menu--print-info-simple info-list)))) |
| 2895 | 2895 | ||
| 2896 | (defun package-all-keywords () | 2896 | (defun package-all-keywords () |
| 2897 | "Collect all package keywords" | 2897 | "Collect all package keywords." |
| 2898 | (let ((key-list)) | 2898 | (let ((key-list)) |
| 2899 | (package--mapc (lambda (desc) | 2899 | (package--mapc (lambda (desc) |
| 2900 | (setq key-list (append (package-desc--keywords desc) | 2900 | (setq key-list (append (package-desc--keywords desc) |
| @@ -2951,7 +2951,7 @@ When none are given, the package matches." | |||
| 2951 | 2951 | ||
| 2952 | (defun package-menu--generate (remember-pos packages &optional keywords) | 2952 | (defun package-menu--generate (remember-pos packages &optional keywords) |
| 2953 | "Populate the Package Menu. | 2953 | "Populate the Package Menu. |
| 2954 | If REMEMBER-POS is non-nil, keep point on the same entry. | 2954 | If REMEMBER-POS is non-nil, keep point on the same entry. |
| 2955 | PACKAGES should be t, which means to display all known packages, | 2955 | PACKAGES should be t, which means to display all known packages, |
| 2956 | or a list of package names (symbols) to display. | 2956 | or a list of package names (symbols) to display. |
| 2957 | 2957 | ||
| @@ -3209,7 +3209,7 @@ The full list of keys can be viewed with \\[describe-mode]." | |||
| 3209 | "Return the priority of ARCHIVE. | 3209 | "Return the priority of ARCHIVE. |
| 3210 | 3210 | ||
| 3211 | The archive priorities are specified in | 3211 | The archive priorities are specified in |
| 3212 | `package-archive-priorities'. If not given there, the priority | 3212 | `package-archive-priorities'. If not given there, the priority |
| 3213 | defaults to 0." | 3213 | defaults to 0." |
| 3214 | (or (cdr (assoc archive package-archive-priorities)) | 3214 | (or (cdr (assoc archive package-archive-priorities)) |
| 3215 | 0)) | 3215 | 0)) |