summaryrefslogtreecommitdiff
path: root/parse.y
diff options
context:
space:
mode:
-rw-r--r--parse.y7
1 files changed, 4 insertions, 3 deletions
@@ -1034,7 +1034,7 @@ assoc_list : /* none */
| args trailer
{
if ($1->nd_alen%2 != 0) {
- Error("odd number list for Dict");
}
$$ = $1;
}
@@ -2117,12 +2117,13 @@ read_escape(flag)
break;
case 'c':
- if (c == '?')
tokadd(0177);
else {
if (islower(c))
c = toupper(c);
- tokadd(c ^ 64);
}
break;