(Fprevious_char): Use PT, not point.

This commit is contained in:
Karl Heuer 1997-06-14 04:51:21 +00:00
parent 5bfb66e31d
commit c71d37d59d

View 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;
}