X-Git-Url: https://git.dlugolecki.net.pl/?a=blobdiff_plain;f=gedcom%2Fgedcom_lex_common.c;h=d8f35d768481e219e273c54e8278ec4d13ee6a0a;hb=7cbefaec45b82eb0449465da19d38a89f2ff2cf3;hp=d0d329cab5e031d81a20bcab027e8bed6384ada1;hpb=2468a5aefafdfbd1982fe3214e3866e072892506;p=gedcom-parse.git diff --git a/gedcom/gedcom_lex_common.c b/gedcom/gedcom_lex_common.c index d0d329c..d8f35d7 100644 --- a/gedcom/gedcom_lex_common.c +++ b/gedcom/gedcom_lex_common.c @@ -136,10 +136,14 @@ static void error_unexpected_character(const char* str, char ch) gedcom_error(_("Unexpected character: '%s' (0x%02x)"), str, ch); } +/* This is to bypass the iconv conversion (if the input is UTF-8 coming + from the program) */ +static int dummy_conv = 0; + #elif LEX_SECTION == 2 #define TO_INTERNAL(STR,OUTBUF) \ - to_internal(STR, yyleng, OUTBUF, sizeof(OUTBUF)) + (dummy_conv ? STR : to_internal(STR, yyleng, OUTBUF, sizeof(OUTBUF))) #define INIT_LINE_LEN \ line_len = 0; @@ -160,6 +164,7 @@ static void error_unexpected_character(const char* str, char ch) gedcom_lval.tag.string = TO_INTERNAL(yytext, tag_buf); \ gedcom_lval.tag.value = TAG_##THETAG; \ BEGIN(NORMAL); \ + line_no++; \ return TAG_##THETAG; \ } @@ -231,6 +236,7 @@ static void error_unexpected_character(const char* str, char ch) CHECK_LINE_LEN; \ if ((level < 0) || (level > MAXGEDCLEVEL)) { \ error_level_out_of_range(); \ + line_no++; \ return BADTOKEN; \ } \ level_diff = level - current_level; \ @@ -248,6 +254,7 @@ static void error_unexpected_character(const char* str, char ch) else { \ /* should never happen (error to GEDCOM spec) */ \ error_level_too_high(level_diff); \ + line_no++; \ return BADTOKEN; \ } \ } @@ -256,12 +263,14 @@ static void error_unexpected_character(const char* str, char ch) #define ACTION_ALPHANUM \ { if (strlen(yytext) > MAXGEDCTAGLEN * encoding_width) { \ error_tag_too_long(yytext); \ + line_no++; \ return BADTOKEN; \ } \ CHECK_LINE_LEN; \ gedcom_lval.tag.string = TO_INTERNAL(yytext, tag_buf); \ gedcom_lval.tag.value = USERTAG; \ BEGIN(NORMAL); \ + line_no++; \ return USERTAG; \ } @@ -323,7 +332,6 @@ static void error_unexpected_character(const char* str, char ch) #define ACTION_TERMINATOR \ { CHECK_LINE_LEN; \ INIT_LINE_LEN; \ - line_no++; \ BEGIN(INITIAL); \ } @@ -398,6 +406,7 @@ void yymyinit(FILE *f) /* Reset our state */ current_level = -1; level_diff = MAXGEDCLEVEL; + BEGIN(INITIAL); } #endif