aboutsummaryrefslogtreecommitdiffstats
path: root/src/buffer.c
diff options
context:
space:
mode:
authorRichard M. Stallman1994-06-21 18:25:45 +0000
committerRichard M. Stallman1994-06-21 18:25:45 +0000
commitea18063fb65dd0af3f1ae374c162edd2433a808b (patch)
treec4203fcf057968253f463140e228903b0921ce7f /src/buffer.c
parent9b59d6d098b01cdfdbc0bce49a0a8e18f2eed7fd (diff)
downloademacs-ea18063fb65dd0af3f1ae374c162edd2433a808b.tar.gz
emacs-ea18063fb65dd0af3f1ae374c162edd2433a808b.zip
(Fmove_overlay): Add missing XINT calls in previous change.
Diffstat (limited to 'src/buffer.c')
-rw-r--r--src/buffer.c2
1 files changed, 1 insertions, 1 deletions
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.")
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;