From: Karl Heuer Date: Sun, 1 Sep 1996 19:02:26 +0000 (+0000) Subject: (re_match_2_internal) [emacs]: Use PT, not point. X-Git-Tag: cvs-readonly~8492 X-Git-Url: http://erislabs.org.uk/gitweb/?a=commitdiff_plain;h=e09c3726d33d6a82e38212299aecb3f7b8e6b3e2;p=gnulib.git (re_match_2_internal) [emacs]: Use PT, not point. --- diff --git a/regex.c b/regex.c index 20ea8aebd..9d8d2d489 100644 --- a/regex.c +++ b/regex.c @@ -4763,19 +4763,19 @@ re_match_2_internal (bufp, string1, size1, string2, size2, pos, regs, stop) #ifdef emacs case before_dot: DEBUG_PRINT1 ("EXECUTING before_dot.\n"); - if (PTR_CHAR_POS ((unsigned char *) d) >= point) + if (PTR_CHAR_POS ((unsigned char *) d) >= PT) goto fail; break; case at_dot: DEBUG_PRINT1 ("EXECUTING at_dot.\n"); - if (PTR_CHAR_POS ((unsigned char *) d) != point) + if (PTR_CHAR_POS ((unsigned char *) d) != PT) goto fail; break; case after_dot: DEBUG_PRINT1 ("EXECUTING after_dot.\n"); - if (PTR_CHAR_POS ((unsigned char *) d) <= point) + if (PTR_CHAR_POS ((unsigned char *) d) <= PT) goto fail; break;