1
0
Fork 0
mirror of git://git.code.sf.net/p/zsh/code synced 2025-10-29 17:31:02 +01:00

fix typos in 22556

This commit is contained in:
Peter Stephenson 2006-07-25 09:25:26 +00:00
parent 50e9ab122b
commit b9bf52d1fc
3 changed files with 9 additions and 2 deletions

View file

@ -3980,12 +3980,14 @@ mb_metastrlen(char *ptr)
#else
/* Simple replacement for mb_metacharlenconv */
/**/
int
metacharlenconv(char *x, int *c)
{
if (*x == Meta) {
if (c)
*c == STOUC(x[1]);
*c = STOUC(x[1]) ^ 32;
return 2;
}
if (c)