aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-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. */