X-Git-Url: http://git.indexdata.com/?p=yaz-moved-to-github.git;a=blobdiff_plain;f=src%2Fstemmer.c;h=a8bf02a620f02f90612201f13bc2e3be77adff30;hp=e67d9b1c87cd78230e8a259a771b7bd37344e160;hb=e5567b53a976dd18a2a8b51deaa0189d53a2f226;hpb=7bfdd9cdcbfd12d6690278c9b56a7ac26b2457e9 diff --git a/src/stemmer.c b/src/stemmer.c index e67d9b1..a8bf02a 100644 --- a/src/stemmer.c +++ b/src/stemmer.c @@ -89,8 +89,12 @@ void yaz_stemmer_stem(yaz_stemmer_p stemmer, struct icu_buf_utf16 *dst, struct i icu_buf_utf16_copy(dst, src); } else { - const char *cstr = (const char *) sb_symbol; - icu_utf16_from_utf8_cstr(dst, cstr , status); + + const char *cstr2 = (const char *) sb_symbol; + icu_utf16_from_utf8_cstr(dst, cstr2 , status); +#if 0 + yaz_log(YLOG_DEBUG, "stemming %s to %s ", cstr, cstr2); +#endif } } icu_buf_utf8_destroy(utf8_buf);