remove all setlocale calls, they break the behaviour of sscanf and

strcasecmp, especially with tr_TR locale - and do not seem to be good for
anything.


git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@14543 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
reimar
2005-01-20 13:22:53 +00:00
parent 6974dfae6b
commit 6e450282a6
10 changed files with 1 additions and 102 deletions

View File

@@ -12,10 +12,6 @@
#include <fcntl.h>
#include <ctype.h>
#ifdef USE_SETLOCALE
#include <locale.h>
#endif
#include "input.h"
#include "mouse.h"
#ifdef MP_DEBUG
@@ -599,14 +595,7 @@ mp_input_parse_cmd(char* str) {
break;
case MP_CMD_ARG_FLOAT:
errno = 0;
/* <olo@altkom.com.pl> Use portable C locale for parsing floats: */
#ifdef USE_SETLOCALE
setlocale(LC_NUMERIC, "C");
#endif
cmd->args[i].v.f = atof(ptr);
#ifdef USE_SETLOCALE
setlocale(LC_NUMERIC, "");
#endif
if(errno != 0) {
mp_msg(MSGT_INPUT,MSGL_ERR,"Command %s: argument %d isn't a float.\n",cmd_def->name,i+1);
ptr = NULL;