for discusion
This commit is contained in:
parent
e2c3695e11
commit
ebda4663c3
@ -220,8 +220,10 @@ void GCodeParser::parse(char *p) {
|
|||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
|
|
||||||
while (*p && *p != ' ') p++; // Skip over the parameter
|
if (!WITHIN(*p, 'A', 'Z')) {
|
||||||
while (*p == ' ') p++; // Skip over all spaces
|
while (*p && NUMERIC(*p)) p++; // Skip over the parameter
|
||||||
|
while (*p == ' ') p++; // Skip over all spaces
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user