aboutsummaryrefslogtreecommitdiffstats
path: root/src/scroll.c
diff options
context:
space:
mode:
authorGerd Moellmann2001-10-08 08:08:08 +0000
committerGerd Moellmann2001-10-08 08:08:08 +0000
commit32c82ac0a18004dac223729f6e3a77a197814086 (patch)
treed3fd5ceb6486951b6d1a47e1b2696678e084b3b2 /src/scroll.c
parent8a226de76604e91d83b7204443b0fed5f9b5789e (diff)
downloademacs-32c82ac0a18004dac223729f6e3a77a197814086.tar.gz
emacs-32c82ac0a18004dac223729f6e3a77a197814086.zip
Don't define min/max.
Diffstat (limited to 'src/scroll.c')
-rw-r--r--src/scroll.c3
1 files changed, 0 insertions, 3 deletions
diff --git a/src/scroll.c b/src/scroll.c
index 83e029f417c..5e45725ae30 100644
--- a/src/scroll.c
+++ b/src/scroll.c
@@ -29,9 +29,6 @@ Boston, MA 02111-1307, USA. */
29#include "frame.h" 29#include "frame.h"
30#include "window.h" 30#include "window.h"
31 31
32#define max(a, b) ((a) > (b) ? (a) : (b))
33#define min(a, b) ((a) < (b) ? (a) : (b))
34
35/* All costs measured in characters. 32/* All costs measured in characters.
36 So no cost can exceed the area of a frame, measured in characters. 33 So no cost can exceed the area of a frame, measured in characters.
37 Let's hope this is never more than 1000000 characters. */ 34 Let's hope this is never more than 1000000 characters. */