]> git.eshelyaron.com Git - emacs.git/commitdiff
(Finternal_face_x_get_resource): Do it on Windows and Mac too.
authorJason Rumney <jasonr@gnu.org>
Thu, 5 Jun 2003 22:52:43 +0000 (22:52 +0000)
committerJason Rumney <jasonr@gnu.org>
Thu, 5 Jun 2003 22:52:43 +0000 (22:52 +0000)
src/xfaces.c

index b717570b380691a55f72d8fef4943951af1fb9ac..a24ad6d230e89ab1b8167cb204aa59328a94283f 100644 (file)
@@ -4422,8 +4422,6 @@ DEFUN ("internal-face-x-get-resource", Finternal_face_x_get_resource,
      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 @@ DEFUN ("internal-face-x-get-resource", Finternal_face_x_get_resource,
   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;
 }