aboutsummaryrefslogtreecommitdiffstats
path: root/lisp/progmodes/executable.el
diff options
context:
space:
mode:
authorKarl Heuer1996-07-21 17:53:08 +0000
committerKarl Heuer1996-07-21 17:53:08 +0000
commit6ddc496fa7ef72ee2d39701aaf14f8b3c767ae56 (patch)
treeb84665e633f317fb51279c90491ec5fc12c4303c /lisp/progmodes/executable.el
parent260ba2022fda3197587f0a029bac5ae17806e100 (diff)
downloademacs-6ddc496fa7ef72ee2d39701aaf14f8b3c767ae56.tar.gz
emacs-6ddc496fa7ef72ee2d39701aaf14f8b3c767ae56.zip
(executable-find): Doc fix.
Diffstat (limited to 'lisp/progmodes/executable.el')
-rw-r--r--lisp/progmodes/executable.el4
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/progmodes/executable.el b/lisp/progmodes/executable.el
index 8011722f05b..1a330e073bc 100644
--- a/lisp/progmodes/executable.el
+++ b/lisp/progmodes/executable.el
@@ -119,8 +119,8 @@ See `compilation-error-regexp-alist'.")
119 119
120;; The C function openp slightly modified would do the trick fine 120;; The C function openp slightly modified would do the trick fine
121(defun executable-find (command) 121(defun executable-find (command)
122 "Search for COMMAND in $PATH and return the absolute file name. 122 "Search for COMMAND in exec-path and return the absolute file name.
123Return nil if COMMAND is not found anywhere in $PATH." 123Return nil if COMMAND is not found anywhere in exec-path."
124 (let ((list exec-path) 124 (let ((list exec-path)
125 file) 125 file)
126 (while list 126 (while list