1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2026-01-09 21:20:45 -08:00

(Fprocess_send_region): Convert move_gap argument to int.

This commit is contained in:
Richard M. Stallman 1997-07-12 06:38:44 +00:00
parent 44d8a79389
commit 4da6dec802

View file

@ -3200,7 +3200,7 @@ Output from processes can arrive in between bunches.")
validate_region (&start, &end);
if (XINT (start) < GPT && XINT (end) > GPT)
move_gap (start);
move_gap (XINT (start));
start1 = XINT (start);
send_process (proc, POS_ADDR (start1), XINT (end) - XINT (start),