Version 1.30a.

* src/lex.c (parse_percent_token): s/quotearg/quote/.
This commit is contained in:
Akim Demaille
2001-11-05 10:06:27 +00:00
parent a4c22fa4bf
commit d54387b4bc
2 changed files with 3 additions and 2 deletions

View File

@@ -1,6 +1,7 @@
2001-11-05 Akim Demaille <akim@epita.fr>
Version 1.30a.
* src/lex.c (parse_percent_token): s/quotearg/quote/.
2001-11-05 Akim Demaille <akim@epita.fr>

View File

@@ -662,8 +662,8 @@ parse_percent_token (void)
if (strcmp (token_buffer + 1, tx->name) == 0)
break;
if (arg && !tx->retval == tok_stropt)
fatal (_("`%s' supports no argument: %s"), token_buffer, quotearg (arg));
if (arg && tx->retval != tok_stropt)
fatal (_("`%s' supports no argument: %s"), token_buffer, quote (arg));
switch (tx->retval)
{