diff options
author | FlavioJS <FlavioJS@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2006-12-20 02:02:24 +0000 |
---|---|---|
committer | FlavioJS <FlavioJS@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2006-12-20 02:02:24 +0000 |
commit | 7b13f57cb69e6b38aa793f135a3c673cc6e72398 (patch) | |
tree | cdb495cb9ecb1d8c27688811440a9eea0a4ad538 /src/common | |
parent | 797848cc6647ae1dd682fae3749b7adf80a5fa21 (diff) | |
download | hercules-7b13f57cb69e6b38aa793f135a3c673cc6e72398.tar.gz hercules-7b13f57cb69e6b38aa793f135a3c673cc6e72398.tar.bz2 hercules-7b13f57cb69e6b38aa793f135a3c673cc6e72398.tar.xz hercules-7b13f57cb69e6b38aa793f135a3c673cc6e72398.zip |
- Fixed the meaning of stdout_with_ansisequence and changed the default value to no.
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@9531 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'src/common')
-rw-r--r-- | src/common/showmsg.c | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/src/common/showmsg.c b/src/common/showmsg.c index 4d4fcafd6..9d7395730 100644 --- a/src/common/showmsg.c +++ b/src/common/showmsg.c @@ -44,9 +44,10 @@ /////////////////////////////////////////////////////////////////////////////// /// behavioral parameter. -/// when true, prints ansi sequences also when redirecting outputs to file -/// otherwise remove them -int stdout_with_ansisequence = 1; +/// when redirecting output: +/// if true prints escape sequences +/// if false removes the escape sequences +int stdout_with_ansisequence = 0; int msg_silent; //Specifies how silent the console is. |