From: Adam Dickmeiss Date: Wed, 13 Mar 2002 11:47:23 +0000 (+0000) Subject: *** empty log message *** X-Git-Tag: YAZ.1.8.6~34 X-Git-Url: http://lists.indexdata.dk/?a=commitdiff_plain;h=0c88a5e1fc983f0bb653e26a6eac72dadf35db57;p=yaz-moved-to-github.git *** empty log message *** --- diff --git a/CHANGELOG b/CHANGELOG index edc9267..eb62b20 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -2,6 +2,8 @@ Possible compatibility problems with earlier versions marked with '*'. --- 1.8.6 2002/MM/DD +Fix bug in CCL parser when form "field = - " was used. + Added function yaz_marc_decode that decodes MARC for line mode display or XML. diff --git a/ccl/cclfind.c b/ccl/cclfind.c index a7d19b5..0708319 100644 --- a/ccl/cclfind.c +++ b/ccl/cclfind.c @@ -44,7 +44,7 @@ /* CCL find (to rpn conversion) * Europagate, 1995 * - * $Id: cclfind.c,v 1.27 2001-11-27 22:38:50 adam Exp $ + * $Id: cclfind.c,v 1.28 2002-03-13 11:47:23 adam Exp $ * * Old Europagate log: * @@ -592,7 +592,7 @@ static struct ccl_rpn_node *qualifiers2 (CCL_parser cclp, } } else if (cclp->look_token->len == 1 && - cclp->look_token->name[0] == '"') /* = - term ? */ + cclp->look_token->name[0] == '-') /* = - term ? */ { ADVANCE; if (!(p = search_term (cclp, ap)))