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:
parent
1bcb03f0cc
commit
b41d1c0494
1 changed files with 1 additions and 1 deletions
|
@ -39,7 +39,7 @@ namespace Pilang3 {
|
|||
char character = *characterit;
|
||||
// Start new command name
|
||||
if (in_command_name) {
|
||||
if (character != ' ' and character != '\n' and character != ';') {
|
||||
if (not is_sep(character) and character != ';') {
|
||||
cache.push_back(character);
|
||||
} else {
|
||||
command_name = cache;
|
||||
|
|
Loading…
Add table
Reference in a new issue