aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorStefan Monnier2001-10-14 20:08:21 +0000
committerStefan Monnier2001-10-14 20:08:21 +0000
commitae95a95a9c144a8ceefb9b2c9c09497705209ab1 (patch)
tree5747d624049f2566a3c08db32d021d1d127c9074
parenta12ca05478f3eb4429a1038699f5dad682f4056d (diff)
downloademacs-ae95a95a9c144a8ceefb9b2c9c09497705209ab1.tar.gz
emacs-ae95a95a9c144a8ceefb9b2c9c09497705209ab1.zip
(exec-suffixes): Initialize to a system-dependent value.
-rw-r--r--lisp/bindings.el8
1 files changed, 8 insertions, 0 deletions
diff --git a/lisp/bindings.el b/lisp/bindings.el
index bb4610fa762..c4327ed6168 100644
--- a/lisp/bindings.el
+++ b/lisp/bindings.el
@@ -450,6 +450,14 @@ is okay. See `mode-line-format'.")
450 ".cp" ".fn" ".ky" ".pg" ".tp" ".vr" 450 ".cp" ".fn" ".ky" ".pg" ".tp" ".vr"
451 ".cps" ".fns" ".kys" ".pgs" ".tps" ".vrs"))) 451 ".cps" ".fns" ".kys" ".pgs" ".tps" ".vrs")))
452 452
453;; Suffixes used for executables.
454(setq exec-suffixes
455 (cond
456 ((memq system-type '(ms-dos windows-nt))
457 '(".exe" ".com" ".bat" ".cmd" ".btm" ""))
458 (t
459 '(""))))
460
453;; Packages should add to this list appropriately when they are 461;; Packages should add to this list appropriately when they are
454;; loaded, rather than listing everything here. 462;; loaded, rather than listing everything here.
455(setq debug-ignored-errors 463(setq debug-ignored-errors