diff options
-rw-r--r-- | Changelog-Trunk.txt | 2 | ||||
-rw-r--r-- | src/map/script.c | 6 |
2 files changed, 5 insertions, 3 deletions
diff --git a/Changelog-Trunk.txt b/Changelog-Trunk.txt index 18c1e04c0..8ae79e8e2 100644 --- a/Changelog-Trunk.txt +++ b/Changelog-Trunk.txt @@ -4,6 +4,8 @@ AS OF SVN REV. 5091, WE ARE NOW USING TRUNK. ALL UNTESTED BUGFIXES/FEATURES GO IF YOU HAVE A WORKING AND TESTED BUGFIX PUT IT INTO STABLE AS WELL AS TRUNK. 2007/01/11 + * Fixed the script engine not parsing strings in multibyte charsets + correctly (should have been done in r9532). * Console plugin working when built as Windows native. [FlavioJS] 2007/01/10 * Combined most of the txt/sql mobdb reading code [ultramage] diff --git a/src/map/script.c b/src/map/script.c index 9721f12d0..401653fdc 100644 --- a/src/map/script.c +++ b/src/map/script.c @@ -723,10 +723,10 @@ const char* parse_simpleexpr(const char *p) } else if(*p=='"'){ add_scriptc(C_STR); p++; - while(*p && *p!='"'){ - if(p[-1]<=0x7e && *p=='\\') + while( *p && *p != '"' ){ + if( (unsigned char)p[-1] <= 0x7e && *p == '\\' ) p++; - else if(*p=='\n') + else if( *p == '\n' ) disp_error_message("parse_simpleexpr: unexpected newline @ string",p); add_scriptb(*p++); } |