diff options
| author | Jason Rumney | 2003-06-05 22:52:43 +0000 |
|---|---|---|
| committer | Jason Rumney | 2003-06-05 22:52:43 +0000 |
| commit | 0c8ea7afde56242f923b04e4fae326189ae4fdd8 (patch) | |
| tree | 20ad1657e1351bf208f1af7c352c03b08aa36ec8 /src | |
| parent | 1f14f29e3cf74fd3a139d5c060e75305e0ed7963 (diff) | |
| download | emacs-0c8ea7afde56242f923b04e4fae326189ae4fdd8.tar.gz emacs-0c8ea7afde56242f923b04e4fae326189ae4fdd8.zip | |
(Finternal_face_x_get_resource): Do it on Windows and Mac too.
Diffstat (limited to 'src')
| -rw-r--r-- | src/xfaces.c | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/src/xfaces.c b/src/xfaces.c index b717570b380..a24ad6d230e 100644 --- a/src/xfaces.c +++ b/src/xfaces.c | |||
| @@ -4422,8 +4422,6 @@ DEFUN ("internal-face-x-get-resource", Finternal_face_x_get_resource, | |||
| 4422 | Lisp_Object resource, class, frame; | 4422 | Lisp_Object resource, class, frame; |
| 4423 | { | 4423 | { |
| 4424 | Lisp_Object value = Qnil; | 4424 | Lisp_Object value = Qnil; |
| 4425 | #ifndef WINDOWSNT | ||
| 4426 | #ifndef MAC_OS | ||
| 4427 | CHECK_STRING (resource); | 4425 | CHECK_STRING (resource); |
| 4428 | CHECK_STRING (class); | 4426 | CHECK_STRING (class); |
| 4429 | CHECK_LIVE_FRAME (frame); | 4427 | CHECK_LIVE_FRAME (frame); |
| @@ -4431,8 +4429,6 @@ DEFUN ("internal-face-x-get-resource", Finternal_face_x_get_resource, | |||
| 4431 | value = display_x_get_resource (FRAME_X_DISPLAY_INFO (XFRAME (frame)), | 4429 | value = display_x_get_resource (FRAME_X_DISPLAY_INFO (XFRAME (frame)), |
| 4432 | resource, class, Qnil, Qnil); | 4430 | resource, class, Qnil, Qnil); |
| 4433 | UNBLOCK_INPUT; | 4431 | UNBLOCK_INPUT; |
| 4434 | #endif /* not MAC_OS */ | ||
| 4435 | #endif /* not WINDOWSNT */ | ||
| 4436 | return value; | 4432 | return value; |
| 4437 | } | 4433 | } |
| 4438 | 4434 | ||