aboutsummaryrefslogtreecommitdiffstats
path: root/src/buffer.c
diff options
context:
space:
mode:
authorRichard M. Stallman1994-06-23 23:55:12 +0000
committerRichard M. Stallman1994-06-23 23:55:12 +0000
commitefd904781130dce0a56321dacd14240dc45f5333 (patch)
treeb2fad4adeadef28ea2a5f5089c5f805e599b487b /src/buffer.c
parent01239f72293504374354d89dcc1ecb8297f1929b (diff)
downloademacs-efd904781130dce0a56321dacd14240dc45f5333.tar.gz
emacs-efd904781130dce0a56321dacd14240dc45f5333.zip
(Fmove_overlay): Fix typo in previous change.
Diffstat (limited to 'src/buffer.c')
-rw-r--r--src/buffer.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/buffer.c b/src/buffer.c
index ccdb5bf5f3b..3eb61de0c82 100644
--- a/src/buffer.c
+++ b/src/buffer.c
@@ -1857,11 +1857,11 @@ buffer.")
1857 o_beg = OVERLAY_POSITION (o_beg); 1857 o_beg = OVERLAY_POSITION (o_beg);
1858 o_end = OVERLAY_POSITION (o_end); 1858 o_end = OVERLAY_POSITION (o_end);
1859 1859
1860 redisplay_region (b, XINT (o_beg), XINT (o_end)); 1860 redisplay_region (ob, 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, XINT (beg), XINT (end)); 1864 redisplay_region (b, 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;