aboutsummaryrefslogtreecommitdiffstats
path: root/src/w32term.c
diff options
context:
space:
mode:
authorKarl Heuer1998-04-09 18:12:46 +0000
committerKarl Heuer1998-04-09 18:12:46 +0000
commit03887dd3884cd7bf42ed18f2fac974653fb628be (patch)
treeea3d65593cff5bf79dc1920f01d1c0d20492a352 /src/w32term.c
parentf4fe72d542cac4978ce691b89a0fe2524515b274 (diff)
downloademacs-03887dd3884cd7bf42ed18f2fac974653fb628be.tar.gz
emacs-03887dd3884cd7bf42ed18f2fac974653fb628be.zip
(min, max): Define as macros.
Diffstat (limited to 'src/w32term.c')
-rw-r--r--src/w32term.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/w32term.c b/src/w32term.c
index 053c148bc3e..737d189f77f 100644
--- a/src/w32term.c
+++ b/src/w32term.c
@@ -49,6 +49,11 @@ Boston, MA 02111-1307, USA. */
49#include "keyboard.h" 49#include "keyboard.h"
50#include "intervals.h" 50#include "intervals.h"
51 51
52#undef min
53#undef max
54#define min(x, y) (((x) < (y)) ? (x) : (y))
55#define max(x, y) (((x) > (y)) ? (x) : (y))
56
52extern void free_frame_menubar (); 57extern void free_frame_menubar ();
53 58
54extern Lisp_Object Vwindow_system; 59extern Lisp_Object Vwindow_system;