]> git.saurik.com Git - cycript.git/blobdiff - Output.cpp
Support tokenization errors.
[cycript.git] / Output.cpp
index 2b10d71c093c7600f9d6c0e4acf28838d1eb9bfc..edd262fdd819dc5b87f9b1a53128ce157e2a369c 100644 (file)
@@ -294,7 +294,7 @@ void CYSelector::Output(std::ostream &out) const {
 
 void CYSource::Show(std::ostream &out) const {
     for (const CYSource *next(this); next != NULL; next = next->next_)
-        next->Output(out);
+        next->Output(out, false);
 }
 
 void CYSource::Output(std::ostream &out, bool block) const {