-# $Id: bib1,v 1.11 2002-05-17 08:46:01 adam Exp $
+# $Id: bib1,v 1.12 2002-10-14 19:45:36 adam Exp $
# CCL qualifiers and their mappings
#
# Each line takes the form:
# n Set truncation explicitly to "none" if no ? is given.
# This rule is for CCL tokens where no fields are specified
+#term u=1016 t=l,r s=pw,al
term u=1016 t=l,r s=pw,al
# Common short-hand access points.
au u=1 s=pw t=l,r # author
# These special directives defines names of keywords for parser
@and og * # either 'or' or *
-@or eller + # either 'eller' or +
-@not ikke - # and so on..
+@or eller # either 'eller' or +
+@not ikke # and so on..
@set s set
@case 0 # case insenstive (1 for case sensitive)
@truncation * ?
/* CCL - lexical analysis
* Europagate, 1995
*
- * $Id: ccltoken.c,v 1.19 2002-06-06 12:54:24 adam Exp $
+ * $Id: ccltoken.c,v 1.20 2002-10-14 19:45:36 adam Exp $
*
* Old Europagate Log:
*
cp++;
break;
default:
- if (!strchr ("(),%!><=- \t\n\r", cp[-1]))
+ if (!strchr ("(),%!><= \t\n\r", cp[-1]))
{
- while (*cp && !strchr ("(),%!><=- \t\n\r", *cp))
+ while (*cp && !strchr ("(),%!><= \t\n\r", *cp))
{
cp++;
++ last->len;