832068b18c
Signed-off-by: Petr Hracek <phracek@redhat.com>
14 lines
335 B
Diff
14 lines
335 B
Diff
diff --git a/src/frame.h b/src/frame.h
|
|
index ff696df..fc19768 100644
|
|
--- a/src/frame.h
|
|
+++ b/src/frame.h
|
|
@@ -1349,7 +1349,7 @@ x_set_bitmap_icon (struct frame *f)
|
|
{
|
|
Lisp_Object obj = assq_no_quit (Qicon_type, f->param_alist);
|
|
|
|
- if (CONSP (obj))
|
|
+ if (CONSP (obj) && !NILP (XCDR (obj)))
|
|
x_bitmap_icon (f, XCDR (obj));
|
|
}
|
|
|