From bb9c0dc8dd2c852d9b6e89b9fd883232019cea93 Mon Sep 17 00:00:00 2001 From: Mike Buland Date: Fri, 9 Nov 2007 22:11:03 +0000 Subject: Fixed a silly bug in the taf system that interpreted the */ at the end of a comment block as a tag...oops. --- src/tafreader.cpp | 3 +++ 1 file changed, 3 insertions(+) (limited to 'src/tafreader.cpp') diff --git a/src/tafreader.cpp b/src/tafreader.cpp index 6441ac3..5609f7c 100644 --- a/src/tafreader.cpp +++ b/src/tafreader.cpp @@ -79,7 +79,10 @@ Bu::TafComment *Bu::TafReader::readComment() { next(); if( c == '*' && la == '/' ) + { + next(); next(); break; + } sCmnt += c; } -- cgit v1.2.3