diff options
author | Nicolas Richard <theonewiththeevillook@yahoo.fr> | 2015-06-29 09:07:04 +0200 |
---|---|---|
committer | Nicolas Richard <theonewiththeevillook@yahoo.fr> | 2015-06-29 09:14:47 +0200 |
commit | a4760a347ebd61e173e7aa5c229159f7c5ac227a (patch) | |
tree | e7c0e83b95c739b78c8573bb003feef3e163e842 /lisp/emacs-lisp | |
parent | f729a7c09eca37bc695db20b35e4dbeaa8813e48 (diff) | |
download | emacs-a4760a347ebd61e173e7aa5c229159f7c5ac227a.tar.gz emacs-a4760a347ebd61e173e7aa5c229159f7c5ac227a.tar.bz2 emacs-a4760a347ebd61e173e7aa5c229159f7c5ac227a.zip |
* package.el (describe-package): Convert the guess to a string
Diffstat (limited to 'lisp/emacs-lisp')
-rw-r--r-- | lisp/emacs-lisp/package.el | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lisp/emacs-lisp/package.el b/lisp/emacs-lisp/package.el index 4dafe17aced..88dd6ac70f3 100644 --- a/lisp/emacs-lisp/package.el +++ b/lisp/emacs-lisp/package.el @@ -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") |