From: Richard M. Stallman Date: Tue, 9 Sep 1997 00:47:40 +0000 (+0000) Subject: (x_screen_planes): Fix type of argument. X-Git-Tag: emacs-20.1~123 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=f03f248997db3a5545dc216a66bf8780bf42fcaf;p=emacs.git (x_screen_planes): Fix type of argument. --- diff --git a/src/xfns.c b/src/xfns.c index cf187e5ff01..e11fbcf52c8 100644 --- a/src/xfns.c +++ b/src/xfns.c @@ -4033,10 +4033,10 @@ x_char_height (f) } 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. */