diff options
author | Karl Heuer <kwzh@gnu.org> | 1996-09-01 19:15:05 +0000 |
---|---|---|
committer | Karl Heuer <kwzh@gnu.org> | 1996-09-01 19:15:05 +0000 |
commit | 6ec8bbd20d14dadb850f993d828b42bb97deba32 (patch) | |
tree | 19f01d5251cd6d478933a5f562ba985bf5c3b117 /src/syntax.c | |
parent | 7003b258300d0e575da8009e6f017b6c19aabacb (diff) | |
download | emacs-6ec8bbd20d14dadb850f993d828b42bb97deba32.tar.gz |
Change all references from point to PT.
Diffstat (limited to 'src/syntax.c')
-rw-r--r-- | src/syntax.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/syntax.c b/src/syntax.c index 8c08aa56a10..22339930b2b 100644 --- a/src/syntax.c +++ b/src/syntax.c @@ -639,7 +639,7 @@ and nil is returned.") int val; CHECK_NUMBER (count, 0); - if (!(val = scan_words (point, XINT (count)))) + if (!(val = scan_words (PT, XINT (count)))) { SET_PT (XINT (count) > 0 ? ZV : BEGV); return Qnil; @@ -1401,7 +1401,7 @@ This includes chars with \"quote\" or \"prefix\" syntax (' or p).") () { int beg = BEGV; - int pos = point; + int pos = PT; while (pos > beg && !char_quoted (pos - 1) && (SYNTAX (FETCH_CHAR (pos - 1)) == Squote |