diff options
| -rw-r--r-- | lisp/emacs-lisp/package.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/emacs-lisp/package.el b/lisp/emacs-lisp/package.el index b60a8a136a1..43a9aa7f710 100644 --- a/lisp/emacs-lisp/package.el +++ b/lisp/emacs-lisp/package.el | |||
| @@ -2254,7 +2254,7 @@ will be deleted." | |||
| 2254 | "Describe package: ") | 2254 | "Describe package: ") |
| 2255 | packages nil t nil nil (when guess | 2255 | packages nil t nil nil (when guess |
| 2256 | (symbol-name guess))))) | 2256 | (symbol-name guess))))) |
| 2257 | (list (intern val)))))) | 2257 | (list (and (> (length val) 0) (intern val))))))) |
| 2258 | (if (not (or (package-desc-p package) (and package (symbolp package)))) | 2258 | (if (not (or (package-desc-p package) (and package (symbolp package)))) |
| 2259 | (message "No package specified") | 2259 | (message "No package specified") |
| 2260 | (help-setup-xref (list #'describe-package package) | 2260 | (help-setup-xref (list #'describe-package package) |