Mercurial > emacs
changeset 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 | 925795f1a594 |
children | 8cf58b38d244 |
files | src/process.c |
diffstat | 1 files changed, 2 insertions(+), 2 deletions(-) [+] |
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. */