]> git.eshelyaron.com Git - emacs.git/commitdiff
(Fprevious_char): Use PT, not point.
authorKarl Heuer <kwzh@gnu.org>
Sat, 14 Jun 1997 04:51:21 +0000 (04:51 +0000)
committerKarl Heuer <kwzh@gnu.org>
Sat, 14 Jun 1997 04:51:21 +0000 (04:51 +0000)
src/editfns.c

index ad331e9623b6dfc6a00af11d71b65b0cb6428bf2..0661d0f8c8658bf41616b524c3b1818ef57c5a56 100644 (file)
@@ -517,7 +517,7 @@ If `enable-multibyte-characters' is nil or point is not\n\
       XSETFASTINT (temp, FETCH_CHAR (pos));
     }
   else
-    XSETFASTINT (temp, FETCH_BYTE (point - 1));
+    XSETFASTINT (temp, FETCH_BYTE (PT - 1));
   return temp;
 }