Skip to content

Commit faefb64

Browse files
committed
errdef.h: clarify ERR_VWOEQ
Most often, the reason for this error is a misspelled keyword, not a missing equals sign in a variable assignment, so we hint at that.
1 parent 4b28587 commit faefb64

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

ttbasic/errdef.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ ESTR(ERR_IFSTKOF, "IF stack overflow")
1818
ESTR(ERR_IFSTKUF, "IF stack underflow")
1919
ESTR(ERR_ULN, "Undefined line number")
2020
ESTR(ERR_PAREN, "\'(\' or \')\' expected")
21-
ESTR(ERR_VWOEQ, "\'=\' expected")
21+
ESTR(ERR_VWOEQ, "\'=\' expected (misspelled command?)")
2222
ESTR(ERR_COM, "Cannot use system command") // v0.83 メッセージ文変更
2323
ESTR(ERR_VALUE, "Illegal value") // 追加
2424
ESTR(ERR_RANGE, "Out of range value") // 追加

0 commit comments

Comments
 (0)