We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
bbatsov
Learn more about funding links in repositories.
Report abuse
1 parent c41de5e commit 187110aCopy full SHA for 187110a
CHANGELOG.md
@@ -5,6 +5,7 @@
5
### Bugs fixed
6
7
* Dynamic vars whose names contain non-alphanumeric characters are now font-locked correctly.
8
+* [#506](https://github.com/clojure-emacs/clojure-mode/issues/506): `clojure-mode-display-version` correctly displays the package's version
9
10
## 5.10.0 (2019-01-05)
11
test/clojure-mode-util-test.el
@@ -26,6 +26,10 @@
26
(require 'cl-lib)
27
(require 'ert)
28
29
+
30
+(ert-deftest clojure-mode-version-should-be-non-nil ()
31
+ (should (not (eq clojure-mode-version nil))))
32
33
(let ((project-dir "/home/user/projects/my-project/")
34
(clj-file-path "/home/user/projects/my-project/src/clj/my_project/my_ns/my_file.clj")
35
(project-relative-clj-file-path "src/clj/my_project/my_ns/my_file.clj")
0 commit comments