Mercurial > emacs
diff src/process.c @ 9334:d949b1150e25
(read_process_output): Don't use XFASTINT as an lvalue.
| author | Karl Heuer <kwzh@gnu.org> |
|---|---|
| date | Tue, 04 Oct 1994 17:35:21 +0000 |
| parents | a14cc1712337 |
| children | cd788aa8cb2a |
line wrap: on
line diff
--- a/src/process.c Tue Oct 04 17:32:17 1994 +0000 +++ b/src/process.c Tue Oct 04 17:35:21 1994 +0000 @@ -2347,9 +2347,9 @@ /* 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. */
