Skip to content

Commit

Permalink
Correct close statement.
Browse files Browse the repository at this point in the history
  • Loading branch information
Andreas Jaeger committed May 18, 2001
1 parent 6e2d19c commit 0e17ee3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions manual/texis.awk
Original file line number Diff line number Diff line change
Expand Up @@ -8,13 +8,13 @@ BEGIN {
{
while ((getline < input[s]) > 0)
{
if ($1 == "@include")
if ($1 == "@include")
{
input[++s] = $2;
print $2, "\\";
}
}
close(input[stackptr]);
close(input[s]);
}
}
print "";
Expand Down

0 comments on commit 0e17ee3

Please sign in to comment.