From: Richard M. Stallman Date: Thu, 23 Jun 1994 23:55:12 +0000 (+0000) Subject: (Fmove_overlay): Fix typo in previous change. X-Git-Tag: emacs-19.34~7818 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=efd904781130dce0a56321dacd14240dc45f5333;p=emacs.git (Fmove_overlay): Fix typo in previous change. --- 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.") o_beg = OVERLAY_POSITION (o_beg); o_end = OVERLAY_POSITION (o_end); - redisplay_region (b, XINT (o_beg), XINT (o_end)); + redisplay_region (ob, XINT (o_beg), XINT (o_end)); } /* Redisplay where the overlay is going to be. */ - redisplay_region (ob, XINT (beg), XINT (end)); + redisplay_region (b, XINT (beg), XINT (end)); /* Don't limit redisplay to the selected window. */ windows_or_buffers_changed = 1;