diff options
| author | Paul Reilly | 1995-02-14 21:48:14 +0000 |
|---|---|---|
| committer | Paul Reilly | 1995-02-14 21:48:14 +0000 |
| commit | 5bf01b68c777a234f14c5971efa4ce308743aef9 (patch) | |
| tree | 49578c65a5e2bf4b4b4ab96e24addd64b5e8e5ba /src | |
| parent | 2bd88040e741c39ac773921869f3708f189f3a61 (diff) | |
| download | emacs-5bf01b68c777a234f14c5971efa4ce308743aef9.tar.gz emacs-5bf01b68c777a234f14c5971efa4ce308743aef9.zip | |
(x_bitmap_icon): Fix test for unallocated icon bitmap.
Diffstat (limited to 'src')
| -rw-r--r-- | src/xterm.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/xterm.c b/src/xterm.c index 97559002292..bc919788d06 100644 --- a/src/xterm.c +++ b/src/xterm.c | |||
| @@ -4302,7 +4302,7 @@ x_bitmap_icon (f, file) | |||
| 4302 | else | 4302 | else |
| 4303 | { | 4303 | { |
| 4304 | /* Create the GNU bitmap if necessary. */ | 4304 | /* Create the GNU bitmap if necessary. */ |
| 4305 | if (!FRAME_X_DISPLAY_INFO (f)->icon_bitmap_id < 0) | 4305 | if (FRAME_X_DISPLAY_INFO (f)->icon_bitmap_id < 0) |
| 4306 | FRAME_X_DISPLAY_INFO (f)->icon_bitmap_id | 4306 | FRAME_X_DISPLAY_INFO (f)->icon_bitmap_id |
| 4307 | = x_create_bitmap_from_data (f, gnu_bits, | 4307 | = x_create_bitmap_from_data (f, gnu_bits, |
| 4308 | gnu_width, gnu_height); | 4308 | gnu_width, gnu_height); |