Mercurial > emacs
diff src/buffer.c @ 8074:cef2897f2e15
(Foverlay_put): Pass redisplay_region a struct buffer *.
| author | Richard M. Stallman <rms@gnu.org> |
|---|---|
| date | Tue, 28 Jun 1994 09:25:42 +0000 |
| parents | ad595e4e165c |
| children | 0c56ff6c4742 |
line wrap: on
line diff
--- a/src/buffer.c Tue Jun 28 08:36:16 1994 +0000 +++ b/src/buffer.c Tue Jun 28 09:25:42 1994 +0000 @@ -2130,7 +2130,7 @@ { /* If actually changing the property, mark redisplay needed. */ if (! NILP (buffer) && !EQ (XCONS (XCONS (tail)->cdr)->car, value)) - redisplay_region (buffer, + redisplay_region (XBUFFER (buffer), marker_position (OVERLAY_START (overlay)), marker_position (OVERLAY_END (overlay))); @@ -2139,7 +2139,7 @@ /* Actually changing the property; mark redisplay needed. */ if (! NILP (buffer)) - redisplay_region (buffer, + redisplay_region (XBUFFER (buffer), marker_position (OVERLAY_START (overlay)), marker_position (OVERLAY_END (overlay)));
