We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0bef87c commit 8ac47afCopy full SHA for 8ac47af
inf-clojure.el
@@ -293,8 +293,9 @@ See http://blog.jorgenschaefer.de/2014/05/race-conditions-in-emacs-process-filte
293
:link '(emacs-commentary-link :tag "Commentary" "inf-clojure"))
294
295
(defconst inf-clojure-version
296
- (eval-when-compile
297
- (lm-version (or load-file-name buffer-file-name)))
+ (or (if (fboundp 'package-get-version)
+ (package-get-version))
298
+ "3.2.0")
299
"The current version of `inf-clojure'.")
300
301
(defcustom inf-clojure-prompt-read-only t
0 commit comments