diff options
-rw-r--r-- | src/clj/clojure/core.clj | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/clj/clojure/core.clj b/src/clj/clojure/core.clj index 04f372e9..9f42e1da 100644 --- a/src/clj/clojure/core.clj +++ b/src/clj/clojure/core.clj @@ -398,7 +398,8 @@ "Returns true if x is nil, false otherwise." {:tag Boolean :added "1.0" - :static true} + :static true + :inline (fn [x] (list 'clojure.lang.Util/identical x nil))} [x] (clojure.lang.Util/identical x nil)) (def |