aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorKarl Heuer1995-05-29 06:15:30 +0000
committerKarl Heuer1995-05-29 06:15:30 +0000
commit5bb52971123d1576e240af685af9264f3990f3b0 (patch)
tree0fbedddc47919e4cc9aca72b08d4f830a24bba1d /src
parent32bfcae1d2e74a7f362091f8fcf0d5711d2145a3 (diff)
downloademacs-5bb52971123d1576e240af685af9264f3990f3b0.tar.gz
emacs-5bb52971123d1576e240af685af9264f3990f3b0.zip
(at_endline_loc_p): Use 0, not NULL, in ?: for next_next.
Diffstat (limited to 'src')
-rw-r--r--src/regex.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/regex.c b/src/regex.c
index 3581b38dbd3..2ccabc12e94 100644
--- a/src/regex.c
+++ b/src/regex.c
@@ -2756,7 +2756,7 @@ at_endline_loc_p (p, pend, syntax)
2756{ 2756{
2757 const char *next = p; 2757 const char *next = p;
2758 boolean next_backslash = *next == '\\'; 2758 boolean next_backslash = *next == '\\';
2759 const char *next_next = p + 1 < pend ? p + 1 : NULL; 2759 const char *next_next = p + 1 < pend ? p + 1 : 0;
2760 2760
2761 return 2761 return
2762 /* Before a subexpression? */ 2762 /* Before a subexpression? */