From d50b4b5550cae33910f9ff4ee6586599830d2fe2 Mon Sep 17 00:00:00 2001 From: Lars Tveito Date: Thu, 4 Feb 2016 19:55:01 +0100 Subject: [PATCH] Fix bug from last commit --- try.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/try.el b/try.el index 8e6a17c..d840c06 100644 --- a/try.el +++ b/try.el @@ -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)))