changeset 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 6511fd7aaea4
children b546fa7e9911
files src/buffer.c
diffstat 1 files changed, 2 insertions(+), 2 deletions(-) [+]
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)));