Mercurial > emacs
changeset 16034:d255e64c9e69
(re_match_2_internal) [emacs]: Use PT, not point.
author | Karl Heuer <kwzh@gnu.org> |
---|---|
date | Sun, 01 Sep 1996 19:02:26 +0000 |
parents | 244188795475 |
children | 9d8b374b5bb1 |
files | src/regex.c |
diffstat | 1 files changed, 3 insertions(+), 3 deletions(-) [+] |
line wrap: on
line diff
--- 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;