diff src/regex.c @ 11974:1a038aa90ad6

(at_endline_loc_p): Use 0, not NULL, in ?: for next_next.
author Karl Heuer <kwzh@gnu.org>
date Mon, 29 May 1995 06:15:30 +0000
parents 655dd1479452
children 094636c759bf
line wrap: on
line diff
--- a/src/regex.c	Mon May 29 06:07:34 1995 +0000
+++ b/src/regex.c	Mon May 29 06:15:30 1995 +0000
@@ -2756,7 +2756,7 @@
 {
   const char *next = p;
   boolean next_backslash = *next == '\\';
-  const char *next_next = p + 1 < pend ? p + 1 : NULL;
+  const char *next_next = p + 1 < pend ? p + 1 : 0;
   
   return
        /* Before a subexpression?  */