changeset 51500:6b3fc894fe43

(Finternal_face_x_get_resource): Do it on Windows and Mac too.
author Jason Rumney <jasonr@gnu.org>
date Thu, 05 Jun 2003 22:52:43 +0000
parents 4addbb67f0bb
children b79b842995c2
files src/xfaces.c
diffstat 1 files changed, 0 insertions(+), 4 deletions(-) [+]
line wrap: on
line diff
--- a/src/xfaces.c	Thu Jun 05 22:12:43 2003 +0000
+++ b/src/xfaces.c	Thu Jun 05 22:52:43 2003 +0000
@@ -4422,8 +4422,6 @@
      Lisp_Object resource, class, frame;
 {
   Lisp_Object value = Qnil;
-#ifndef WINDOWSNT
-#ifndef MAC_OS
   CHECK_STRING (resource);
   CHECK_STRING (class);
   CHECK_LIVE_FRAME (frame);
@@ -4431,8 +4429,6 @@
   value = display_x_get_resource (FRAME_X_DISPLAY_INFO (XFRAME (frame)),
 				  resource, class, Qnil, Qnil);
   UNBLOCK_INPUT;
-#endif /* not MAC_OS */
-#endif /* not WINDOWSNT */
   return value;
 }