From: Dennis Schafroth Date: Wed, 28 Mar 2012 14:28:00 +0000 (+0200) Subject: Comment out hardcoded right chop of punctuation X-Git-Tag: v1.6.13~17 X-Git-Url: http://git.indexdata.com/?a=commitdiff_plain;h=512a11133b1ccc4a44d6e971c8a446865136bb15;p=pazpar2-moved-to-github.git Comment out hardcoded right chop of punctuation --- diff --git a/src/termlists.c b/src/termlists.c index e7b6e68..ea93130 100644 --- a/src/termlists.c +++ b/src/termlists.c @@ -118,9 +118,10 @@ void termlist_insert(struct termlist *tl, const char *display_term, return; strcpy(buf, norm_term); /* chop right */ + /* for (cp = buf + strlen(buf); cp != buf && strchr(",. -", cp[-1]); cp--) cp[-1] = '\0'; - + */ bucket = jenkins_hash((unsigned char *)buf) % tl->hash_size; for (p = &tl->hashtable[bucket]; *p; p = &(*p)->next) {