Commit 3efcb6cc187ce1b922d03e8585c8866990fb6b93

Thomas de Grivel 2017-02-27T13:53:41

Allow calling install on keywords.

1
2
3
4
5
6
7
8
9
10
11
12
13
14
diff --git a/repo.lisp b/repo.lisp
index eb7dca5..6a0f750 100644
--- a/repo.lisp
+++ b/repo.lisp
@@ -514,6 +514,9 @@
       (install (manifest-or-die x))
       (install (repo-or-die x))))
 
+(defmethod install ((x symbol))
+  (install (symbol-name x)))
+
 (defmethod install ((x null))
   nil)