Add some delimiters for parsing CJK dates, #437898.

On Windows, the short date formats are used, containing standard
delimiters.


git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@16081 57a11ea4-9604-0410-9ed3-97b8803252fd
This commit is contained in:
Andreas Köhler 2007-05-13 15:02:40 +00:00
parent 7d4786558b
commit 1413a11989

View File

@ -632,7 +632,7 @@ qof_scan_date_internal (const char *buff, int *day, int *month, int *year,
/* Use strtok to find delimiters */
if (tmp) {
static char *delims = ".,-+/\\() ";
static char *delims = ".,-+/\\()년월年月 ";
first_field = strtok (tmp, delims);
if (first_field) {