diff src/syntax.c @ 16039:855c8d8ba0f0

Change all references from point to PT.
author Karl Heuer <kwzh@gnu.org>
date Sun, 01 Sep 1996 19:15:05 +0000
parents 46ba65e7976c
children ff7346c31184
line wrap: on
line diff
--- a/src/syntax.c	Sun Sep 01 19:09:14 1996 +0000
+++ b/src/syntax.c	Sun Sep 01 19:15:05 1996 +0000
@@ -639,7 +639,7 @@
   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 @@
   ()
 {
   int beg = BEGV;
-  int pos = point;
+  int pos = PT;
 
   while (pos > beg && !char_quoted (pos - 1)
 	 && (SYNTAX (FETCH_CHAR (pos - 1)) == Squote