1
0
Fork 0
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:
Tanaka Akira 1999-07-12 17:02:40 +00:00
parent 7c670f1e6a
commit 1f6786ef7a
65 changed files with 1858 additions and 505 deletions

View file

@ -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;
}