]> git.saurik.com Git - cycript.git/commitdiff
Fix console line continuation. v0.9.449
authorJay Freeman (saurik) <saurik@saurik.com>
Fri, 3 Jun 2011 02:01:35 +0000 (02:01 +0000)
committerJay Freeman (saurik) <saurik@saurik.com>
Fri, 3 Jun 2011 02:01:35 +0000 (02:01 +0000)
Console.cpp

index 89cd62ef635192ee0730650f57f1bd60949640d2..50692f27c42c043445c1ee3635a2d349d4c87d86 100644 (file)
@@ -482,7 +482,7 @@ static void Console(CYOptions &options) {
             if (parser.parse() != 0 || !driver.errors_.empty()) {
                 for (CYDriver::Errors::const_iterator error(driver.errors_.begin()); error != driver.errors_.end(); ++error) {
                     cy::position begin(error->location_.begin);
-                    if (begin.line != lines.size() || begin.column - 1 != lines.back().size() || error->warning_) {
+                    if (begin.line != lines.size() || begin.column < lines.back().size() || error->warning_) {
                         cy::position end(error->location_.end);
 
                         if (begin.line != lines.size()) {