1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2025-12-28 08:11:05 -08:00

(read_process_output): Don't use XFASTINT as an lvalue.

This commit is contained in:
Karl Heuer 1994-10-04 17:35:21 +00:00
parent 247e20a8ba
commit 7c6f34f0cc

View file

@ -2347,9 +2347,9 @@ read_process_output (proc, channel)
/* Insert after old_begv, but before old_zv. */
if (point < XFASTINT (old_begv))
XFASTINT (old_begv) += nchars;
XSETFASTINT (old_begv, XFASTINT (old_begv) + nchars);
if (point <= XFASTINT (old_zv))
XFASTINT (old_zv) += nchars;
XSETFASTINT (old_zv, XFASTINT (old_zv) + nchars);
/* Insert before markers in case we are inserting where
the buffer's mark is, and the user's next command is Meta-y. */