diff options
Diffstat (limited to 'lisp/eshell/esh-ext.el')
-rw-r--r-- | lisp/eshell/esh-ext.el | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/lisp/eshell/esh-ext.el b/lisp/eshell/esh-ext.el index d8dc05691c7..af7c240044a 100644 --- a/lisp/eshell/esh-ext.el +++ b/lisp/eshell/esh-ext.el @@ -48,10 +48,8 @@ loaded into memory, thus beginning a new process." :type 'hook :group 'eshell-ext) -(defcustom eshell-binary-suffixes - (if (eshell-under-windows-p) - '(".exe" ".com" ".bat" ".cmd" "") - '("")) +;; Maybe this should simply be a defvaralias ? -stef +(defcustom eshell-binary-suffixes exec-suffixes "*A list of suffixes used when searching for executable files." :type '(repeat string) :group 'eshell-ext) |