* package.el (describe-package): Convert the guess to a string
This commit is contained in:
parent
f729a7c09e
commit
a4760a347e
1 changed files with 2 additions and 1 deletions
|
@ -2120,7 +2120,8 @@ will be deleted."
|
|||
(format "Describe package (default %s): "
|
||||
guess)
|
||||
"Describe package: ")
|
||||
packages nil t nil nil guess)))
|
||||
packages nil t nil nil (when guess
|
||||
(symbol-name guess)))))
|
||||
(list (intern val))))))
|
||||
(if (not (or (package-desc-p package) (and package (symbolp package))))
|
||||
(message "No package specified")
|
||||
|
|
Loading…
Add table
Reference in a new issue