diff options
| author | Nicolas Richard | 2015-06-29 09:07:04 +0200 |
|---|---|---|
| committer | Nicolas Richard | 2015-06-29 09:14:47 +0200 |
| commit | a4760a347ebd61e173e7aa5c229159f7c5ac227a (patch) | |
| tree | e7c0e83b95c739b78c8573bb003feef3e163e842 | |
| parent | f729a7c09eca37bc695db20b35e4dbeaa8813e48 (diff) | |
| download | emacs-a4760a347ebd61e173e7aa5c229159f7c5ac227a.tar.gz emacs-a4760a347ebd61e173e7aa5c229159f7c5ac227a.zip | |
* package.el (describe-package): Convert the guess to a string
| -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." | |||
| 2120 | (format "Describe package (default %s): " | 2120 | (format "Describe package (default %s): " |
| 2121 | guess) | 2121 | guess) |
| 2122 | "Describe package: ") | 2122 | "Describe package: ") |
| 2123 | packages nil t nil nil guess))) | 2123 | packages nil t nil nil (when guess |
| 2124 | (symbol-name guess))))) | ||
| 2124 | (list (intern val)))))) | 2125 | (list (intern val)))))) |
| 2125 | (if (not (or (package-desc-p package) (and package (symbolp package)))) | 2126 | (if (not (or (package-desc-p package) (and package (symbolp package)))) |
| 2126 | (message "No package specified") | 2127 | (message "No package specified") |