aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGlenn Morris2015-05-05 20:10:59 -0700
committerGlenn Morris2015-05-05 20:10:59 -0700
commit118bb49ab3f27e6011754e47e3056e917d2dcac1 (patch)
treeb82aa8c6167c15deb9eb817f9317a222cddd1bbe
parentd804150fb26c5c46cf8c7bc6bac1cbf88c3d5bed (diff)
downloademacs-118bb49ab3f27e6011754e47e3056e917d2dcac1.tar.gz
emacs-118bb49ab3f27e6011754e47e3056e917d2dcac1.zip
* lisp/w32-fns.el (w32-shell-name): Silence compiler.
-rw-r--r--lisp/w32-fns.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/w32-fns.el b/lisp/w32-fns.el
index 876df875b1b..6f8fa840bd3 100644
--- a/lisp/w32-fns.el
+++ b/lisp/w32-fns.el
@@ -44,7 +44,7 @@
44 (or (bound-and-true-p shell-file-name) 44 (or (bound-and-true-p shell-file-name)
45 (getenv "ESHELL") 45 (getenv "ESHELL")
46 (getenv "SHELL") 46 (getenv "SHELL")
47 (and (w32-using-nt) "cmd.exe") 47 (and (fboundp 'w32-using-nt) (w32-using-nt) "cmd.exe")
48 "command.com")) 48 "command.com"))
49 49
50(defun w32-system-shell-p (shell-name) 50(defun w32-system-shell-p (shell-name)