From: Richard M. Stallman Date: Tue, 21 Jun 1994 18:25:45 +0000 (+0000) Subject: (Fmove_overlay): Add missing XINT calls in previous change. X-Git-Tag: emacs-19.34~7858 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=ea18063fb65dd0af3f1ae374c162edd2433a808b;p=emacs.git (Fmove_overlay): Add missing XINT calls in previous change. --- diff --git a/src/buffer.c b/src/buffer.c index edab13cc88b..ccdb5bf5f3b 100644 --- a/src/buffer.c +++ b/src/buffer.c @@ -1861,7 +1861,7 @@ buffer.") } /* Redisplay where the overlay is going to be. */ - redisplay_region (ob, beg, end); + redisplay_region (ob, XINT (beg), XINT (end)); /* Don't limit redisplay to the selected window. */ windows_or_buffers_changed = 1;