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:
parent
50e9ab122b
commit
b9bf52d1fc
3 changed files with 9 additions and 2 deletions
|
|
@ -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)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue