Function: eglot--executable-find
eglot--executable-find is a byte-compiled function defined in
eglot.el.gz.
Signature
(eglot--executable-find COMMAND &optional REMOTE)
Documentation
Like Emacs 27's executable-find, ignore REMOTE on Emacs 26.
Source Code
;; Defined in /usr/src/emacs/lisp/progmodes/eglot.el.gz
(defun eglot--executable-find (command &optional remote)
"Like Emacs 27's `executable-find', ignore REMOTE on Emacs 26."
(if (>= emacs-major-version 27) (executable-find command remote)
(executable-find command)))