* src/lib/evil_langinfo.c:
	Fix nl_langinfo(RADIXCHAR).



SVN revision: 70490
This commit is contained in:
Vincent Torri 2012-04-26 04:40:45 +00:00
parent 2e9912b91a
commit ce4331df42
3 changed files with 8 additions and 2 deletions

View File

@ -1,3 +1,9 @@
2012-04-26 Vincent Torri <doursse at users dot sf dot net>
* NEWS:
* src/lib/evil_langinfo.c:
Fix nl_langinfo(RADIXCHAR).
2012-04-20 Vincent Torri <doursse at users dot sf dot net>
* NEWS:

View File

@ -7,6 +7,7 @@ Evil NEWS - User visible changes.
** Add S_ISLNK macro
** Add strcasestr() API
** Do not declare and define localtime_r() if it's already defined
** Fix nl_langinfo(RADIXCHAR)
* Evil 1.0:

View File

@ -43,8 +43,7 @@ nl_langinfo(nl_item index)
}
case RADIXCHAR:
{
/* FIXME: better returned value... */
return ".";
return localeconv()->decimal_point;
}
}