From a4760a347ebd61e173e7aa5c229159f7c5ac227a Mon Sep 17 00:00:00 2001 From: Nicolas Richard Date: Mon, 29 Jun 2015 09:07:04 +0200 Subject: [PATCH] * package.el (describe-package): Convert the guess to a string --- lisp/emacs-lisp/package.el | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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") -- 2.11.4.GIT