aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard M. Stallman2001-11-14 22:31:37 +0000
committerRichard M. Stallman2001-11-14 22:31:37 +0000
commitc26e3f6c55cf2b52f760b3e92b7d41d47dba79f3 (patch)
treea1af518390808018160a1d1de22fe6efcc451068
parent7d18891d46d1323ee6c328381ea7048cb5baf2f5 (diff)
downloademacs-c26e3f6c55cf2b52f760b3e92b7d41d47dba79f3.tar.gz
emacs-c26e3f6c55cf2b52f760b3e92b7d41d47dba79f3.zip
(image_background, image_background_transparent):
Conditionalize on HAVE_X_WINDOWS.
-rw-r--r--src/dispextern.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/dispextern.h b/src/dispextern.h
index 892025e41e7..c44deee0f1a 100644
--- a/src/dispextern.h
+++ b/src/dispextern.h
@@ -2289,10 +2289,14 @@ void forall_images_in_image_cache P_ ((struct frame *,
2289int valid_image_p P_ ((Lisp_Object)); 2289int valid_image_p P_ ((Lisp_Object));
2290void prepare_image_for_display P_ ((struct frame *, struct image *)); 2290void prepare_image_for_display P_ ((struct frame *, struct image *));
2291int lookup_image P_ ((struct frame *, Lisp_Object)); 2291int lookup_image P_ ((struct frame *, Lisp_Object));
2292
2293#ifdef HAVE_X_WINDOWS
2292unsigned long image_background P_ ((struct image *, struct frame *, 2294unsigned long image_background P_ ((struct image *, struct frame *,
2293 XImage *ximg)); 2295 XImage *ximg));
2294int image_background_transparent P_ ((struct image *, struct frame *, 2296int image_background_transparent P_ ((struct image *, struct frame *,
2295 XImage *mask)); 2297 XImage *mask));
2298#endif /* HAVE_X_WINDOWS */
2299
2296extern Lisp_Object tip_frame; 2300extern Lisp_Object tip_frame;
2297extern Window tip_window; 2301extern Window tip_window;
2298EXFUN (Fx_show_tip, 6); 2302EXFUN (Fx_show_tip, 6);