aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorRichard M. Stallman1997-09-09 00:47:40 +0000
committerRichard M. Stallman1997-09-09 00:47:40 +0000
commitf03f248997db3a5545dc216a66bf8780bf42fcaf (patch)
tree4a3819027a235ad2021a2355be7ed25e607c847a /src
parent35cb86869d5e432f548125202b19691af1e49bda (diff)
downloademacs-f03f248997db3a5545dc216a66bf8780bf42fcaf.tar.gz
emacs-f03f248997db3a5545dc216a66bf8780bf42fcaf.zip
(x_screen_planes): Fix type of argument.
Diffstat (limited to 'src')
-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)
4033} 4033}
4034 4034
4035int 4035int
4036x_screen_planes (frame) 4036x_screen_planes (f)
4037 Lisp_Object frame; 4037 register struct frame *f;
4038{ 4038{
4039 return FRAME_X_DISPLAY_INFO (XFRAME (frame))->n_planes; 4039 return FRAME_X_DISPLAY_INFO (f)->n_planes;
4040} 4040}
4041 4041
4042#if 0 /* These no longer seem like the right way to do things. */ 4042#if 0 /* These no longer seem like the right way to do things. */