diff options
| author | Gerd Moellmann | 2001-10-08 08:08:08 +0000 |
|---|---|---|
| committer | Gerd Moellmann | 2001-10-08 08:08:08 +0000 |
| commit | 32c82ac0a18004dac223729f6e3a77a197814086 (patch) | |
| tree | d3fd5ceb6486951b6d1a47e1b2696678e084b3b2 /src/scroll.c | |
| parent | 8a226de76604e91d83b7204443b0fed5f9b5789e (diff) | |
| download | emacs-32c82ac0a18004dac223729f6e3a77a197814086.tar.gz emacs-32c82ac0a18004dac223729f6e3a77a197814086.zip | |
Don't define min/max.
Diffstat (limited to 'src/scroll.c')
| -rw-r--r-- | src/scroll.c | 3 |
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. */ |