aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJim Blandy1993-02-22 15:08:57 +0000
committerJim Blandy1993-02-22 15:08:57 +0000
commitf111a131b4734ce17e771e6a3cdba7ac145e7bea (patch)
tree0ab0ac1bd08ca1e16ee9d1883ed8b8e840a63efd
parentf4e7b2c2ea9f6f4d7a7b09298f7a47159376b64b (diff)
downloademacs-f111a131b4734ce17e771e6a3cdba7ac145e7bea.tar.gz
emacs-f111a131b4734ce17e771e6a3cdba7ac145e7bea.zip
* xfns.c (x_set_icon_type): Pass the proper number of arguments to
x_bitmap_icon.
-rw-r--r--src/xfns.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/xfns.c b/src/xfns.c
index 7cd3db197e2..458f2e45529 100644
--- a/src/xfns.c
+++ b/src/xfns.c
@@ -849,7 +849,7 @@ x_set_icon_type (f, arg, oldval)
849 if (NILP (arg)) 849 if (NILP (arg))
850 result = x_text_icon (f, 0); 850 result = x_text_icon (f, 0);
851 else 851 else
852 result = x_bitmap_icon (f, 0); 852 result = x_bitmap_icon (f);
853 853
854 if (result) 854 if (result)
855 { 855 {