1
0
Fork 0
mirror of https://gitlab.com/niansa/pilang3.git synced 2025-03-06 20:49:20 +01:00

Update pilang.cpp

This commit is contained in:
niansa 2021-02-04 13:40:43 +00:00
parent 1bcb03f0cc
commit b41d1c0494

View file

@ -39,7 +39,7 @@ namespace Pilang3 {
char character = *characterit; char character = *characterit;
// Start new command name // Start new command name
if (in_command_name) { if (in_command_name) {
if (character != ' ' and character != '\n' and character != ';') { if (not is_sep(character) and character != ';') {
cache.push_back(character); cache.push_back(character);
} else { } else {
command_name = cache; command_name = cache;