summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRichard M. Stallman <rms@gnu.org>1997-09-09 00:47:40 +0000
committerRichard M. Stallman <rms@gnu.org>1997-09-09 00:47:40 +0000
commit9e96501f1c13e447d7d36a0ad63d34112a169e77 (patch)
tree2a97765bd0a4618de21c54babb040421c6a4f796
parentca3796ab309a1a3128d79164f528c3882ca3d2e2 (diff)
downloademacs-9e96501f1c13e447d7d36a0ad63d34112a169e77.tar.gz
(x_screen_planes): Fix type of argument.
-rw-r--r--src/xfns.c6
1 files changed, 3 insertions, 3 deletions
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. */