mirror of
https://github.com/processing/processing4.git
synced 2026-02-26 08:44:39 +01:00
fix bug 420
This commit is contained in:
@@ -327,6 +327,7 @@ public class AutoFormat {
|
||||
case ',':
|
||||
trimRight(buf);
|
||||
buf.append(c);
|
||||
buf.append(' ');
|
||||
break;
|
||||
|
||||
case ' ':
|
||||
@@ -581,7 +582,7 @@ public class AutoFormat {
|
||||
|
||||
if ((lookup("for"))) {
|
||||
c = get_string();
|
||||
while (c != ';') {
|
||||
while (c != ';' && c != ':') {
|
||||
c = get_string();
|
||||
}
|
||||
ct = 0;
|
||||
|
||||
Reference in New Issue
Block a user