summaryrefslogtreecommitdiff
path: root/cider.el
diff options
context:
space:
mode:
authorVitalie Spinu <spinuvit@gmail.com>2018-06-28 15:24:14 +0200
committerBozhidar Batsov <bozhidar.batsov@gmail.com>2018-06-30 19:24:48 +0200
commitbaae33267c94d2462cb08d7b3db7514d37df3d1f (patch)
tree30c03a4b48345fe5cc391751ee3ad03e3667786f /cider.el
parent5f1a4672dc4fc0302e0eee23edd80123d5a91bb1 (diff)
Fix checkdoc error on emacs 27
Diffstat (limited to 'cider.el')
-rw-r--r--cider.el5
1 files changed, 3 insertions, 2 deletions
diff --git a/cider.el b/cider.el
index e1d5e9b8..46a8d03f 100644
--- a/cider.el
+++ b/cider.el
@@ -1177,8 +1177,9 @@ choose."
;; TODO: Implement a check for command presence over tramp
(defun cider--resolve-command (command)
- "Find COMMAND on `exec-path' if possible, or return nil.
-In case `default-directory' is non-local we assume the command is available."
+ "Find COMMAND in exec path (see variable `exec-path').
+Return nil if not found. In case `default-directory' is non-local we
+assume the command is available."
(when-let* ((command (or (and (file-remote-p default-directory) command)
(executable-find command)
(executable-find (concat command ".bat")))))