| 297 | |
| 298 | // Check whether the current command is a meta command, or we are skipping a block. Return true if we are and the current line no longer needs to be processed. |
| 299 | bool GCodeBuffer::CheckMetaCommand(const StringRef& reply) THROWS(GCodeException) |
| 300 | { |
| 301 | return NOT_BINARY_AND(stringParser.CheckMetaCommand(reply)); |
| 302 | } |
| 303 | |
| 304 | #if HAS_SBC_INTERFACE |
| 305 |
nothing calls this directly
no test coverage detected