comparison src/buffer.c @ 7995:7f68b0db826f

(Fmove_overlay): Add missing XINT calls in previous change.
author Richard M. Stallman <rms@gnu.org>
date Tue, 21 Jun 1994 18:25:45 +0000
parents c5b7f74b5023
children e16ebbd6f14b
comparison
equal deleted inserted replaced
7994:c5b7f74b5023 7995:7f68b0db826f
1859 1859
1860 redisplay_region (b, XINT (o_beg), XINT (o_end)); 1860 redisplay_region (b, XINT (o_beg), XINT (o_end));
1861 } 1861 }
1862 1862
1863 /* Redisplay where the overlay is going to be. */ 1863 /* Redisplay where the overlay is going to be. */
1864 redisplay_region (ob, beg, end); 1864 redisplay_region (ob, XINT (beg), XINT (end));
1865 1865
1866 /* Don't limit redisplay to the selected window. */ 1866 /* Don't limit redisplay to the selected window. */
1867 windows_or_buffers_changed = 1; 1867 windows_or_buffers_changed = 1;
1868 } 1868 }
1869 else 1869 else