diff options
-rw-r--r-- | Changelog-Trunk.txt | 2 | ||||
-rw-r--r-- | src/common/strlib.c | 2 |
2 files changed, 3 insertions, 1 deletions
diff --git a/Changelog-Trunk.txt b/Changelog-Trunk.txt index 9ed31c5e1..d6db2ecfe 100644 --- a/Changelog-Trunk.txt +++ b/Changelog-Trunk.txt @@ -3,6 +3,8 @@ Date Added AS OF SVN REV. 5091, WE ARE NOW USING TRUNK. ALL UNTESTED BUGFIXES/FEATURES GO INTO TRUNK. IF YOU HAVE A WORKING AND TESTED BUGFIX PUT IT INTO STABLE AS WELL AS TRUNK. +2007/04/15 + * Fixed TXT char creation blocking characters with nonstandard names 2007/04/13 * Committing some accumulated stuff [ultramage] - makefile typo, maps_athena typo, svn:eol-style native for some files diff --git a/src/common/strlib.c b/src/common/strlib.c index 9cac2ca4f..977dc8306 100644 --- a/src/common/strlib.c +++ b/src/common/strlib.c @@ -114,7 +114,7 @@ int remove_control_chars(char* str) int change = 0; for(i = 0; str[i]; i++) { - if (str[i] < 32) { + if (ISCNTRL(str[i])) { str[i] = '_'; change = 1; } |