comparison src/search.c @ 27884:e066446ae244

Remove definition of CONST.
author Dave Love <fx@gnu.org>
date Sun, 27 Feb 2000 12:48:53 +0000
parents bb0e45f6ca86
children 9a8814cc543c
comparison
equal deleted inserted replaced
27883:7c90c9f169f4 27884:e066446ae244
94 static void 94 static void
95 matcher_overflow () 95 matcher_overflow ()
96 { 96 {
97 error ("Stack overflow in regexp matcher"); 97 error ("Stack overflow in regexp matcher");
98 } 98 }
99
100 #ifdef __STDC__
101 #define CONST const
102 #else
103 #define CONST
104 #endif
105 99
106 /* Compile a regexp and signal a Lisp error if anything goes wrong. 100 /* Compile a regexp and signal a Lisp error if anything goes wrong.
107 PATTERN is the pattern to compile. 101 PATTERN is the pattern to compile.
108 CP is the place to put the result. 102 CP is the place to put the result.
109 TRANSLATE is a translation table for ignoring case, or nil for none. 103 TRANSLATE is a translation table for ignoring case, or nil for none.