- Timestamp:
- Feb 5, 2025 11:32:32 AM (3 months ago)
- svn:sync-xref-src-repo-rev:
- 167345
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/common/script/scriptlex.cpp
r108051 r108065 1060 1060 return RTScriptLexProduceTokError(hScriptLex, pTok, rc, "Lexer: Error adding character to string literal"); 1061 1061 1062 ch = RTScriptLexGetCh (hScriptLex);1062 ch = RTScriptLexGetChEx(hScriptLex, RTSCRIPT_LEX_CONV_F_NOTHING); 1063 1063 for (;;) 1064 1064 { … … 1081 1081 { 1082 1082 /* Start of escape sequence. */ 1083 RTScriptLexConsumeCh (hScriptLex);1084 ch = RTScriptLexGetCh (hScriptLex);1083 RTScriptLexConsumeChEx(hScriptLex, RTSCRIPT_LEX_CONV_F_NOTHING); 1084 ch = RTScriptLexGetChEx(hScriptLex, RTSCRIPT_LEX_CONV_F_NOTHING); 1085 1085 switch (ch) 1086 1086 {
Note:
See TracChangeset
for help on using the changeset viewer.