diff src/xfns.c @ 19825:cdfaf8ce5208

(x_screen_planes): Fix type of argument.
author Richard M. Stallman <rms@gnu.org>
date Tue, 09 Sep 1997 00:47:40 +0000
parents 2f58824bf3f6
children 69d52f3bdb46
line wrap: on
line diff
--- a/src/xfns.c	Tue Sep 09 00:46:00 1997 +0000
+++ b/src/xfns.c	Tue Sep 09 00:47:40 1997 +0000
@@ -4033,10 +4033,10 @@
 }
 
 int
-x_screen_planes (frame)
-     Lisp_Object frame;
+x_screen_planes (f)
+     register struct frame *f;
 {
-  return FRAME_X_DISPLAY_INFO (XFRAME (frame))->n_planes;
+  return FRAME_X_DISPLAY_INFO (f)->n_planes;
 }
 
 #if 0  /* These no longer seem like the right way to do things.  */