]> git.eshelyaron.com Git - emacs.git/commitdiff
(eshell-binary-suffixes): Use exec-suffixes.
authorStefan Monnier <monnier@iro.umontreal.ca>
Mon, 18 Mar 2002 14:56:35 +0000 (14:56 +0000)
committerStefan Monnier <monnier@iro.umontreal.ca>
Mon, 18 Mar 2002 14:56:35 +0000 (14:56 +0000)
lisp/ChangeLog
lisp/eshell/esh-ext.el

index ae85e3e799f30f96e29663123d1e6743e548d61e..f7a15b22beef7135836ddb0afe1fbe0679399664 100644 (file)
@@ -1,3 +1,7 @@
+2002-03-18  Stefan Monnier  <monnier@cs.yale.edu>
+
+       * eshell/esh-ext.el (eshell-binary-suffixes): Use exec-suffixes.
+
 2002-03-18  Richard M. Stallman  <rms@gnu.org>
 
        * menu-bar.el (menu-bar-options-menu): Cope if
@@ -10,7 +14,7 @@
 
        * files.el (list-directory): Set default-directory at the end.
 
-       * dabbrev.el (dabbrev--goto-start-of-abbrev): 
+       * dabbrev.el (dabbrev--goto-start-of-abbrev):
        Put a limit on field-beginning search.
 
 2002-03-17  Simon Josefsson  <jas@extundo.com>
 
 2002-03-17  Stefan Monnier  <monnier@cs.yale.edu>
 
+       * textmodes/sgml-mode.el (sgml-xml-mode): Renamed from sgml-xml.
+       (sgml-xml-guess): Simplify.
+       (sgml-mode-common): Remove (move into sgml-mode).
+       (sgml-mode): Add code from sgml-mode-common.
+       Remove redundant setting of indent-line-function.
+       Don't set skeleton-transformation when in XML mode.
+
        * international/mule-diag.el (describe-char-after):
        Use `internal-describe-syntax-value' again (got lost somewhere).
 
index d8dc05691c7b4d7d7f2836dd8ae1b48ae1f725d6..af7c240044a8a425f1dae1b846d1558458b322aa 100644 (file)
@@ -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)