diff options
| author | Stefan Monnier | 2002-03-18 14:56:35 +0000 |
|---|---|---|
| committer | Stefan Monnier | 2002-03-18 14:56:35 +0000 |
| commit | 194c8d989a246930f9f672521ff0cd1c449e65da (patch) | |
| tree | 5c36326bbd954af708e278ceed9fdd6d6e05d4f1 | |
| parent | 2ac75e6e1216898556a7c6b9b0b77b54c819ee29 (diff) | |
| download | emacs-194c8d989a246930f9f672521ff0cd1c449e65da.tar.gz emacs-194c8d989a246930f9f672521ff0cd1c449e65da.zip | |
(eshell-binary-suffixes): Use exec-suffixes.
| -rw-r--r-- | lisp/ChangeLog | 13 | ||||
| -rw-r--r-- | lisp/eshell/esh-ext.el | 6 |
2 files changed, 14 insertions, 5 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index ae85e3e799f..f7a15b22bee 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,7 @@ | |||
| 1 | 2002-03-18 Stefan Monnier <monnier@cs.yale.edu> | ||
| 2 | |||
| 3 | * eshell/esh-ext.el (eshell-binary-suffixes): Use exec-suffixes. | ||
| 4 | |||
| 1 | 2002-03-18 Richard M. Stallman <rms@gnu.org> | 5 | 2002-03-18 Richard M. Stallman <rms@gnu.org> |
| 2 | 6 | ||
| 3 | * menu-bar.el (menu-bar-options-menu): Cope if | 7 | * menu-bar.el (menu-bar-options-menu): Cope if |
| @@ -10,7 +14,7 @@ | |||
| 10 | 14 | ||
| 11 | * files.el (list-directory): Set default-directory at the end. | 15 | * files.el (list-directory): Set default-directory at the end. |
| 12 | 16 | ||
| 13 | * dabbrev.el (dabbrev--goto-start-of-abbrev): | 17 | * dabbrev.el (dabbrev--goto-start-of-abbrev): |
| 14 | Put a limit on field-beginning search. | 18 | Put a limit on field-beginning search. |
| 15 | 19 | ||
| 16 | 2002-03-17 Simon Josefsson <jas@extundo.com> | 20 | 2002-03-17 Simon Josefsson <jas@extundo.com> |
| @@ -26,6 +30,13 @@ | |||
| 26 | 30 | ||
| 27 | 2002-03-17 Stefan Monnier <monnier@cs.yale.edu> | 31 | 2002-03-17 Stefan Monnier <monnier@cs.yale.edu> |
| 28 | 32 | ||
| 33 | * textmodes/sgml-mode.el (sgml-xml-mode): Renamed from sgml-xml. | ||
| 34 | (sgml-xml-guess): Simplify. | ||
| 35 | (sgml-mode-common): Remove (move into sgml-mode). | ||
| 36 | (sgml-mode): Add code from sgml-mode-common. | ||
| 37 | Remove redundant setting of indent-line-function. | ||
| 38 | Don't set skeleton-transformation when in XML mode. | ||
| 39 | |||
| 29 | * international/mule-diag.el (describe-char-after): | 40 | * international/mule-diag.el (describe-char-after): |
| 30 | Use `internal-describe-syntax-value' again (got lost somewhere). | 41 | Use `internal-describe-syntax-value' again (got lost somewhere). |
| 31 | 42 | ||
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." | |||
| 48 | :type 'hook | 48 | :type 'hook |
| 49 | :group 'eshell-ext) | 49 | :group 'eshell-ext) |
| 50 | 50 | ||
| 51 | (defcustom eshell-binary-suffixes | 51 | ;; Maybe this should simply be a defvaralias ? -stef |
| 52 | (if (eshell-under-windows-p) | 52 | (defcustom eshell-binary-suffixes exec-suffixes |
| 53 | '(".exe" ".com" ".bat" ".cmd" "") | ||
| 54 | '("")) | ||
| 55 | "*A list of suffixes used when searching for executable files." | 53 | "*A list of suffixes used when searching for executable files." |
| 56 | :type '(repeat string) | 54 | :type '(repeat string) |
| 57 | :group 'eshell-ext) | 55 | :group 'eshell-ext) |