Fix bug from last commit

This commit is contained in:
Lars Tveito 2016-02-04 19:55:01 +01:00
parent 7989e0d111
commit d50b4b5550

2
try.el
View File

@ -119,7 +119,7 @@ to a raw .el file. Packages are stored in `try-tmp-dir' and raw
.el files are not stored at all."
(interactive)
;; Completions for packages.
(let* ((url-or-package (or (if (symbolp url-or-package)
(let* ((url-or-package (or (if (and url-or-package (symbolp url-or-package))
(symbol-name url-or-package)
url-or-package)
(try-complete package-archive-contents)))