aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKarl Heuer1994-10-04 17:35:21 +0000
committerKarl Heuer1994-10-04 17:35:21 +0000
commit7c6f34f0cc37fc1da2b4e3feb084d4ffb935f0cb (patch)
tree64ea6a413aa501bd345b203b1673b323d58eecec
parent247e20a8ba9bc7b792872558c4f9204fef6a0816 (diff)
downloademacs-7c6f34f0cc37fc1da2b4e3feb084d4ffb935f0cb.tar.gz
emacs-7c6f34f0cc37fc1da2b4e3feb084d4ffb935f0cb.zip
(read_process_output): Don't use XFASTINT as an lvalue.
-rw-r--r--src/process.c4
1 files 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)
2347 2347
2348 /* Insert after old_begv, but before old_zv. */ 2348 /* Insert after old_begv, but before old_zv. */
2349 if (point < XFASTINT (old_begv)) 2349 if (point < XFASTINT (old_begv))
2350 XFASTINT (old_begv) += nchars; 2350 XSETFASTINT (old_begv, XFASTINT (old_begv) + nchars);
2351 if (point <= XFASTINT (old_zv)) 2351 if (point <= XFASTINT (old_zv))
2352 XFASTINT (old_zv) += nchars; 2352 XSETFASTINT (old_zv, XFASTINT (old_zv) + nchars);
2353 2353
2354 /* Insert before markers in case we are inserting where 2354 /* Insert before markers in case we are inserting where
2355 the buffer's mark is, and the user's next command is Meta-y. */ 2355 the buffer's mark is, and the user's next command is Meta-y. */