From 5b6b18ebe4dae4bad552b818a9705c9ed2dad336 Mon Sep 17 00:00:00 2001 From: John Doty Date: Mon, 7 Dec 2015 08:23:13 -0800 Subject: [PATCH] Emacs: Wrong batch file for vcvars --- .emacs.d/core.el | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.emacs.d/core.el b/.emacs.d/core.el index 2843463..aec873b 100644 --- a/.emacs.d/core.el +++ b/.emacs.d/core.el @@ -708,10 +708,9 @@ (interactive) (dolist (ev (split-string - (shell-command-to-string "cmd /c \" \"%ProgramFiles(x86)%\\Microsoft Visual Studio 14.0\\Common7\\Tools\\VsDevCmd.bat\" && set \"") + (shell-command-to-string "cmd /c \" \"%ProgramFiles(x86)%\\Microsoft Visual Studio 14.0\\VC\\vcvarsall.bat\" x64 && set \"") "[\n]+")) (letrec ((spev (split-string ev "=")) (vn (car spev)) (vv (cadr spev))) (setenv vn vv)))) - )