Mercurial > hg > xemacs-beta
comparison lwlib/xlwmenu.c @ 84:ac0620f6398e r20-0b92
Import from CVS: tag r20-0b92
author | cvs |
---|---|
date | Mon, 13 Aug 2007 09:08:29 +0200 |
parents | 1ce6082ce73f |
children | 8619ce7e4c50 |
comparison
equal
deleted
inserted
replaced
83:ba3ba6e17456 | 84:ac0620f6398e |
---|---|
381 char ch = massaged_resource_char[(unsigned char) *in++]; | 381 char ch = massaged_resource_char[(unsigned char) *in++]; |
382 if (ch) | 382 if (ch) |
383 { | 383 { |
384 *out++ = firstp ? tolower (ch) : toupper (ch); | 384 *out++ = firstp ? tolower (ch) : toupper (ch); |
385 firstp = False; | 385 firstp = False; |
386 while ((ch = massaged_resource_char[(unsigned char) *in++]) != NULL) | 386 while ((ch = massaged_resource_char[(unsigned char) *in++]) != '\0') |
387 *out++ = ch; | 387 *out++ = ch; |
388 if (!*(in-1)) /* Overshot the NULL byte? */ | 388 if (!*(in-1)) /* Overshot the NULL byte? */ |
389 break; | 389 break; |
390 } | 390 } |
391 } | 391 } |