improved for EOF handling

This commit is contained in:
ceriel 1989-11-17 11:40:48 +00:00
parent b6c29b5541
commit cde3638bc9

View file

@ -23,6 +23,7 @@ s/.*{\(.*\),.*\(".*"\).*$/ case \1 :\
cat <<'--EOT--'
default:
if (tok <= 0) return "end of file";
if (tok < 040 || tok >= 0177) {
return "bad token";
}