# HG changeset patch # User Richard M. Stallman # Date 873766060 0 # Node ID cdfaf8ce520845e63385b28770057bdab90ea51a # Parent ea89a2408bfa23799e94f9326939936a627c7efe (x_screen_planes): Fix type of argument. diff -r ea89a2408bfa -r cdfaf8ce5208 src/xfns.c --- 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. */