mirror of
git://git.sv.gnu.org/emacs.git
synced 2025-12-28 08:11:05 -08:00
(read_process_output): Don't use XFASTINT as an lvalue.
This commit is contained in:
parent
247e20a8ba
commit
7c6f34f0cc
1 changed files with 2 additions and 2 deletions
|
|
@ -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. */
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue