From: mdw Date: Sun, 13 Jan 2002 14:50:22 +0000 (+0000) Subject: Delimiter-setting function names change. X-Git-Tag: 1.2.6~14 X-Git-Url: https://git.distorted.org.uk/~mdw/fwd/commitdiff_plain/9b699b2801a569093da31c2a856bcbda945987c7 Delimiter-setting function names change. --- diff --git a/fattr.c b/fattr.c index 75491a6..adf052d 100644 --- a/fattr.c +++ b/fattr.c @@ -1,6 +1,6 @@ /* -*-c-*- * - * $Id: fattr.c,v 1.2 1999/08/19 18:32:48 mdw Exp $ + * $Id: fattr.c,v 1.3 2002/01/13 14:50:22 mdw Exp $ * * Handling of file attributes * @@ -29,6 +29,9 @@ /*----- Revision history --------------------------------------------------* * * $Log: fattr.c,v $ + * Revision 1.3 2002/01/13 14:50:22 mdw + * Delimiter-setting function names change. + * * Revision 1.2 1999/08/19 18:32:48 mdw * Improve lexical analysis. In particular, `chmod' patterns don't have to * be quoted any more. @@ -104,14 +107,14 @@ int fattr_option(scanner *sc, fattr *f) /* --- Gobble an optional `=' sign --- */ - undelim(0, ",=+-"); + conf_undelim(sc, 0, ",=+-"); token(sc); if (sc->t == '=') token(sc); if (sc->t != CTOK_WORD) error(sc, "parse error, expected file mode"); - undelim(0, 0); + conf_undelim(sc, 0, 0); /* --- If it looks digitlike, read as octal --- */