From: Karl Heuer Date: Sat, 14 Jun 1997 04:51:21 +0000 (+0000) Subject: (Fprevious_char): Use PT, not point. X-Git-Tag: emacs-20.1~1706 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=c71d37d59d101bd9d25fb8c8772cb2df8cd22820;p=emacs.git (Fprevious_char): Use PT, not point. --- diff --git a/src/editfns.c b/src/editfns.c index ad331e9623b..0661d0f8c86 100644 --- a/src/editfns.c +++ b/src/editfns.c @@ -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; }