diff options
author | Karl Heuer <kwzh@gnu.org> | 1996-07-21 17:53:08 +0000 |
---|---|---|
committer | Karl Heuer <kwzh@gnu.org> | 1996-07-21 17:53:08 +0000 |
commit | 6ddc496fa7ef72ee2d39701aaf14f8b3c767ae56 (patch) | |
tree | b84665e633f317fb51279c90491ec5fc12c4303c /lisp | |
parent | 260ba2022fda3197587f0a029bac5ae17806e100 (diff) | |
download | emacs-6ddc496fa7ef72ee2d39701aaf14f8b3c767ae56.tar.gz |
(executable-find): Doc fix.
Diffstat (limited to 'lisp')
-rw-r--r-- | lisp/progmodes/executable.el | 4 |
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'.") ;; The C function openp slightly modified would do the trick fine (defun executable-find (command) - "Search for COMMAND in $PATH and return the absolute file name. -Return nil if COMMAND is not found anywhere in $PATH." + "Search for COMMAND in exec-path and return the absolute file name. +Return nil if COMMAND is not found anywhere in exec-path." (let ((list exec-path) file) (while list |