# HG changeset patch # User Paul Reilly # Date 792798494 0 # Node ID e5f13cc95d026e0326772b50d22d03358f65f172 # Parent cd1c0b5e8634b2f3119a46da6ac16a96c7884913 (x_bitmap_icon): Fix test for unallocated icon bitmap. diff -r cd1c0b5e8634 -r e5f13cc95d02 src/xterm.c --- a/src/xterm.c Tue Feb 14 17:31:55 1995 +0000 +++ b/src/xterm.c Tue Feb 14 21:48:14 1995 +0000 @@ -4302,7 +4302,7 @@ else { /* Create the GNU bitmap if necessary. */ - if (!FRAME_X_DISPLAY_INFO (f)->icon_bitmap_id < 0) + if (FRAME_X_DISPLAY_INFO (f)->icon_bitmap_id < 0) FRAME_X_DISPLAY_INFO (f)->icon_bitmap_id = x_create_bitmap_from_data (f, gnu_bits, gnu_width, gnu_height);