mirror of
git://git.code.sf.net/p/zsh/code
synced 2025-11-25 14:20:53 +01:00
zsh-3.1.6-test-1
This commit is contained in:
parent
7c670f1e6a
commit
1f6786ef7a
65 changed files with 1858 additions and 505 deletions
|
|
@ -357,9 +357,11 @@ zzlex(void)
|
|||
}
|
||||
if (*ptr == '#') {
|
||||
if (*++ptr == '\\') {
|
||||
int v;
|
||||
|
||||
ptr++;
|
||||
yyval = *ptr == Meta ? *++ptr ^ 32 : *ptr;
|
||||
ptr++;
|
||||
ptr = getkeystring(ptr, NULL, 6, &v);
|
||||
yyval = v;
|
||||
unary = 0;
|
||||
return NUM;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue