From 118bb49ab3f27e6011754e47e3056e917d2dcac1 Mon Sep 17 00:00:00 2001 From: Glenn Morris Date: Tue, 5 May 2015 20:10:59 -0700 Subject: [PATCH] * lisp/w32-fns.el (w32-shell-name): Silence compiler. --- lisp/w32-fns.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 @@ (or (bound-and-true-p shell-file-name) (getenv "ESHELL") (getenv "SHELL") - (and (w32-using-nt) "cmd.exe") + (and (fboundp 'w32-using-nt) (w32-using-nt) "cmd.exe") "command.com")) (defun w32-system-shell-p (shell-name) -- 2.11.4.GIT