diff options
Diffstat (limited to 'lib')
-rw-r--r-- | lib/lib.clj | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/lib.clj b/lib/lib.clj index 9a0fff7c..154fb85e 100644 --- a/lib/lib.clj +++ b/lib/lib.clj @@ -231,7 +231,7 @@ (defn- load-lib "Loads a lib with options: sequential keywords and arguments." [prefix sym & options] - (let [sym (symbol (str prefix \. sym)) + (let [sym (symbol (str prefix (when prefix \.) sym)) opts (apply hash-map options) raw (:raw opts) reload (:reload opts) |