diff options
| author | Richard M. Stallman | 1994-06-21 18:25:45 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 1994-06-21 18:25:45 +0000 |
| commit | ea18063fb65dd0af3f1ae374c162edd2433a808b (patch) | |
| tree | c4203fcf057968253f463140e228903b0921ce7f /src/buffer.c | |
| parent | 9b59d6d098b01cdfdbc0bce49a0a8e18f2eed7fd (diff) | |
| download | emacs-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.c | 2 |
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; |