comparison src/search.c @ 39682:5f60884970a8

Don't define min/max.
author Gerd Moellmann <gerd@gnu.org>
date Mon, 08 Oct 2001 08:07:49 +0000
parents 3195d967e954
children e9374c065e86
comparison
equal deleted inserted replaced
39681:87cc624f4e1e 39682:5f60884970a8
30 #include "blockinput.h" 30 #include "blockinput.h"
31 #include "intervals.h" 31 #include "intervals.h"
32 32
33 #include <sys/types.h> 33 #include <sys/types.h>
34 #include "regex.h" 34 #include "regex.h"
35
36 #define min(a, b) ((a) < (b) ? (a) : (b))
37 #define max(a, b) ((a) > (b) ? (a) : (b))
38 35
39 #define REGEXP_CACHE_SIZE 20 36 #define REGEXP_CACHE_SIZE 20
40 37
41 /* If the regexp is non-nil, then the buffer contains the compiled form 38 /* If the regexp is non-nil, then the buffer contains the compiled form
42 of that regexp, suitable for searching. */ 39 of that regexp, suitable for searching. */