From: Eli Zaretskii Date: Sat, 31 Dec 2016 12:07:39 +0000 (+0200) Subject: Don't define NOMINMAX on MS-Windows X-Git-Tag: emacs-26.0.90~979 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=8a165813cb9321a8979ac6d98530f5e4392fb879;p=emacs.git Don't define NOMINMAX on MS-Windows * src/callproc.c (NOMINMAX) [WINDOWSNT]: Don't define. This is no longer needed with the current sources and MinGW headers, while defining NOMINMAX causes an annoying compiler warning. --- diff --git a/src/callproc.c b/src/callproc.c index 02db3483ff2..f0fe5c66611 100644 --- a/src/callproc.c +++ b/src/callproc.c @@ -32,7 +32,6 @@ along with GNU Emacs. If not, see . */ #include "lisp.h" #ifdef WINDOWSNT -#define NOMINMAX #include /* for fcntl */ #include #include "w32.h"