We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 971f62b commit 9130c64Copy full SHA for 9130c64
cider-util.el
@@ -376,6 +376,8 @@ propertized (defaults to current buffer)."
376
377
(defun cider--pkg-version ()
378
"Extract CIDER's package version from its package metadata."
379
+ ;; Use `cond' below to avoid a compiler unused return value warning
380
+ ;; when `package-get-version' returns nil. See #3181.
381
;; FIXME: Inline the logic from package-get-version and adapt it
382
(cond ((fboundp 'package-get-version)
383
(package-get-version))))
0 commit comments