Well, I've finally upgraded to fvwm2 but for some strange reason my icons
were not loading for the iconified windows. After some investigation I
found out that a trailing space in the Icon Style definition was being
added to the name of the pixmap.
Style "xterm" Icon xterm.xpm
^ space here
I'm submitting a simple patch which fixes this problem.
--- style.c.orig Wed Jan 3 00:56:13 1996
+++ style.c Wed Jan 3 00:56:26 1996
_at_@ -474,7 +474,8 @@
while(isspace(*restofline))restofline++;
tmp = restofline;
len = 0;
- while((tmp != NULL)&&(*tmp != 0)&&(*tmp != ',')&&(*tmp != '\n'))
+ while((tmp != NULL)&&(*tmp != 0)&&(*tmp != ',')
+ &&(*tmp != '\n')&&(!isspace(*tmp)))
{
tmp++;
len++;
-Calvin
---------------------------------------------------------------------
"Information - the currency of the future" cgs_at_cldc.howard.edu
---------------------------------------------------------------------
--
To unsubscribe from the list, send "unsubscribe fvwm" in the body of a
message to majordomo_at_hpc.uh.edu.
To report problems, send mail to fvwm-owner_at_hpc.uh.edu.
Received on Tue Jan 02 1996 - 23:55:14 GMT