summaryrefslogtreecommitdiff
path: root/usr/src/cmd/awk/maketab.c
diff options
context:
space:
mode:
Diffstat (limited to 'usr/src/cmd/awk/maketab.c')
-rw-r--r--usr/src/cmd/awk/maketab.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/usr/src/cmd/awk/maketab.c b/usr/src/cmd/awk/maketab.c
index ff398f3593..9c625aabcc 100644
--- a/usr/src/cmd/awk/maketab.c
+++ b/usr/src/cmd/awk/maketab.c
@@ -91,6 +91,7 @@ struct xx {
{ DIVIDE, "arith", " / " },
{ MOD, "arith", " % " },
{ UMINUS, "arith", " -" },
+ { UPLUS, "arith", " +" },
{ POWER, "arith", " **" },
{ PREINCR, "incrdecr", "++" },
{ POSTINCR, "incrdecr", "++" },
@@ -122,6 +123,7 @@ struct xx {
{ DO, "dostat", "do" },
{ IN, "instat", "instat" },
{ NEXT, "jump", "next" },
+ { NEXTFILE, "jump", "nextfile" },
{ EXIT, "jump", "exit" },
{ BREAK, "jump", "break" },
{ CONTINUE, "jump", "continue" },