tb Use % for builtin cmd prefix
This commit is contained in:
@ -67,7 +67,7 @@ void tz_classify(Tokenizer *tz) {
|
||||
while (tk) {
|
||||
if (tk->ptr[0] == '"' && tk->ptr[tk->len - 1] == '"') {
|
||||
tk->type = TOK_STRING;
|
||||
} else if (tk->ptr[0] == '@') {
|
||||
} else if (tk->ptr[0] == '%') {
|
||||
RtCmd *cmd = RTCMDS;
|
||||
while (cmd) {
|
||||
string_memset(tmpbuf, 0, tmpbufsz);
|
||||
|
Reference in New Issue
Block a user