diff src/redisplay-output.c @ 5515:f87be7ddd60d

Simplify clear_region interface. -------------------- ChangeLog entries follow: -------------------- src/ChangeLog addition: 2011-05-29 Didier Verna <didier@xemacs.org> * console-impl.h (struct console_methods): Remove device parameter from the clear_region method prototype. * redisplay-output.c (redisplay_clear_region): Remove the device parameter from the clear_region method call. * console-stream.c (stream_clear_region): * redisplay-msw.c (mswindows_clear_region): * redisplay-tty.c (tty_clear_region): Update accordingly. * redisplay-xlike-inc.c (XLIKE_clear_region): Ditto. Get the device from the frame structure instead.
author Didier Verna <didier@lrde.epita.fr>
date Sun, 29 May 2011 20:56:07 +0200
parents 308d34e9f07d
children 56144c8593a8
line wrap: on
line diff
--- a/src/redisplay-output.c	Sun May 29 18:17:09 2011 +0100
+++ b/src/redisplay-output.c	Sun May 29 20:56:07 2011 +0200
@@ -1807,7 +1807,7 @@
   if (UNBOUNDP (background_pixmap))
     background_pixmap = Qnil;
 
-  DEVMETH (d, clear_region, (locale, d, f, findex, x, y, width, height,
+  DEVMETH (d, clear_region, (locale, f, findex, x, y, width, height,
 			     fcolor, bcolor, 
 			     background_pixmap, background_placement));
 }