aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--lisp/cus-start.el4
1 files changed, 3 insertions, 1 deletions
diff --git a/lisp/cus-start.el b/lisp/cus-start.el
index 001d638ca14..a8bcc458649 100644
--- a/lisp/cus-start.el
+++ b/lisp/cus-start.el
@@ -173,7 +173,9 @@ Leaving \"Default\" unchecked is equivalent with specifying a default of
173 (directory :format "%v"))) 173 (directory :format "%v")))
174 nil 174 nil
175 :standard 175 :standard
176 (mapcar 'directory-file-name 176 (mapcar (lambda (f)
177 (if f (directory-file-name f)
178 "."))
177 (append (parse-colon-path (getenv "PATH")) 179 (append (parse-colon-path (getenv "PATH"))
178 (list exec-directory)))) 180 (list exec-directory))))
179 (exec-suffixes execute (repeat string)) 181 (exec-suffixes execute (repeat string))