X-Git-Url: http://git.indexdata.com/?p=yaz-moved-to-github.git;a=blobdiff_plain;f=src%2Fstemmer.c;h=7ee26339444939e954fcb342c760166dbdf7abff;hp=cdc105304557420bf446f30f4039af6112ff0fb6;hb=554423d357ed2bcf4ece977f85de3bc1307d6536;hpb=e7c92daefc4151eb51197bea80fbd4e80895945f diff --git a/src/stemmer.c b/src/stemmer.c index cdc1053..7ee2633 100644 --- a/src/stemmer.c +++ b/src/stemmer.c @@ -87,8 +87,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);