Mercurial > emacs
changeset 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 | ea89a2408bfa |
children | 2e8a94028b7d |
files | src/xfns.c |
diffstat | 1 files changed, 3 insertions(+), 3 deletions(-) [+] |
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. */