From ae93ce928abee6da4b30e79ca67f968f8b3335e5 Mon Sep 17 00:00:00 2001 From: Karl Heuer Date: Sun, 1 Sep 1996 19:02:26 +0000 Subject: [PATCH] (re_match_2_internal) [emacs]: Use PT, not point. --- src/regex.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/regex.c b/src/regex.c index 20ea8aebdda..9d8d2d489fd 100644 --- a/src/regex.c +++ b/src/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; -- 2.39.2