Skip to content
This repository has been archived by the owner on Oct 21, 2024. It is now read-only.

Commit

Permalink
0.22.1
Browse files Browse the repository at this point in the history
Fixed a manual spelling error
Fixed line numbers (forgot to update pointers after modifying string)
  • Loading branch information
PQCraft authored Sep 20, 2021
1 parent ad7b2a7 commit e39f408
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 2 deletions.
4 changes: 3 additions & 1 deletion clibasic.c
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@

// Base defines

char VER[] = "0.22";
char VER[] = "0.22.1";

#if defined(__linux__)
char OSVER[] = "Linux";
Expand Down Expand Up @@ -2716,6 +2716,8 @@ bool runlogic() {
if (cmd[h] == '=') return false;
copyStrSnip(cmd, i, j, ltmp[0]);
copyStrFrom(cmd, i, cmd);
j -= i;
i = 0;
}
cerr = 0;
chkCmdPtr = ltmp[0];
Expand Down
Binary file modified docs/manual.odt
Binary file not shown.
Binary file modified docs/manual.pdf
Binary file not shown.
2 changes: 1 addition & 1 deletion logic.c
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ if (chkCmd(2, "?", "PRINT")) {
int32_t ptr = 0;
int32_t i = j;
while (cmd[i]) {
i++;
++i;
if (cmd[i] == '"') {inStr = !inStr;}
if (!inStr) {
switch (cmd[i]) {
Expand Down

0 comments on commit e39f408

Please sign in to comment.