# HG changeset patch # User Karl Heuer # Date 801728130 0 # Node ID 1a038aa90ad6e6e75cef1c4da282c708ebe18e95 # Parent 4e0f3e3b4cc71cddf296a985b238084cfbcbbd33 (at_endline_loc_p): Use 0, not NULL, in ?: for next_next. diff -r 4e0f3e3b4cc7 -r 1a038aa90ad6 src/regex.c --- 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? */