diff options
| author | Richard M. Stallman <rms@gnu.org> | 1994-06-28 09:25:42 +0000 |
|---|---|---|
| committer | Richard M. Stallman <rms@gnu.org> | 1994-06-28 09:25:42 +0000 |
| commit | 146f50a386504e2dca37e859992809f74cb595c4 (patch) | |
| tree | c3a8177e4afdb21a5b3e06c51945a2f5be4d05ce /src/buffer.c | |
| parent | fa562dd5e14ed55d584bffe2c99a92acb122ada4 (diff) | |
(Foverlay_put): Pass redisplay_region a struct buffer *.
Diffstat (limited to 'src/buffer.c')
| -rw-r--r-- | src/buffer.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/buffer.c b/src/buffer.c index 9561035e334..5b4cf3a6162 100644 --- a/src/buffer.c +++ b/src/buffer.c @@ -2130,7 +2130,7 @@ DEFUN ("overlay-put", Foverlay_put, Soverlay_put, 3, 3, 0, { /* 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 @@ DEFUN ("overlay-put", Foverlay_put, Soverlay_put, 3, 3, 0, /* 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))); |
