changeset 20140:097764c274a1

(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 e96e838a3c71
children af1a8e0e77f3
files regex.c
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/regex.c	Sun May 28 01:55:00 1995 +0000
+++ b/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?  */