From 7c6f34f0cc37fc1da2b4e3feb084d4ffb935f0cb Mon Sep 17 00:00:00 2001 From: Karl Heuer Date: Tue, 4 Oct 1994 17:35:21 +0000 Subject: [PATCH] (read_process_output): Don't use XFASTINT as an lvalue. --- src/process.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/process.c b/src/process.c index 07b1e7c9ff8..e2c9f2e8787 100644 --- a/src/process.c +++ b/src/process.c @@ -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. */