# HG changeset patch # User Karl Heuer # Date 841604546 0 # Node ID d255e64c9e69c5b7579accf49573a90abac173b1 # Parent 2441887954751fad1451f99faaa861f2b7c2bb75 (re_match_2_internal) [emacs]: Use PT, not point. diff -r 244188795475 -r d255e64c9e69 src/regex.c --- a/src/regex.c Sun Sep 01 18:33:12 1996 +0000 +++ b/src/regex.c Sun Sep 01 19:02:26 1996 +0000 @@ -4763,19 +4763,19 @@ #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;