diff options
author | clifford <clifford@b57f626f-c46c-0410-a088-ec61d464b74c> | 2009-12-04 07:33:02 (GMT) |
---|---|---|
committer | clifford <clifford@b57f626f-c46c-0410-a088-ec61d464b74c> | 2009-12-04 07:33:02 (GMT) |
commit | cfb8a40c5663d6c9947d14f7b71997a4382a6078 (patch) | |
tree | befaefaadb7a118c0bef534384aa3c948dc46fc0 | |
parent | 1610e1cba7b1753117a231fefbf1c184d38a12b8 (diff) |
Clifford Wolf:
Fixed multiple recompile bug
(thx to Andrew Plumb for reporting and debugging)
git-svn-id: http://svn.clifford.at/openscad/trunk@142 b57f626f-c46c-0410-a088-ec61d464b74c
-rw-r--r-- | lexer.l | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -73,7 +73,7 @@ extern const char *parser_input_buffer; } <<EOF>> { - if (yyin) + if (yyin && yyin != stdin) fclose(yyin); yypop_buffer_state(); if (!YY_CURRENT_BUFFER) |