From: Adam Dickmeiss Date: Wed, 19 Feb 1997 14:46:15 +0000 (+0000) Subject: The "all" specifier only affects elements that are indexed (and not X-Git-Tag: YAZ.1.8~672 X-Git-Url: http://git.indexdata.com/?p=yaz-moved-to-github.git;a=commitdiff_plain;h=065bdef058a58e2db5242d99c16febf9f9aad899 The "all" specifier only affects elements that are indexed (and not all elements). --- diff --git a/retrieval/d1_absyn.c b/retrieval/d1_absyn.c index e71dac8..9fcc3ed 100644 --- a/retrieval/d1_absyn.c +++ b/retrieval/d1_absyn.c @@ -4,7 +4,11 @@ * Sebastian Hammer, Adam Dickmeiss * * $Log: d1_absyn.c,v $ - * Revision 1.8 1997-01-02 10:47:59 quinn + * Revision 1.9 1997-02-19 14:46:15 adam + * The "all" specifier only affects elements that are indexed (and not + * all elements). + * + * Revision 1.8 1997/01/02 10:47:59 quinn * Added optional, physical ANY * * Revision 1.7 1996/06/10 08:56:01 quinn @@ -294,8 +298,8 @@ data1_absyn *data1_read_absyn(char *file) tp = &(*tp)->next; } while ((p = strchr(p, ',')) && *(++p)); + *tp = all; /* append any ALL entries to the list */ } - *tp = all; /* append any ALL entries to the list */ new->name = xstrdup(name); }