divnum is no longer silently restricted to the range 0..9. (cf: 4098)

changequote(,) is now a synonym for changequote().	 	(cf: 803)

buffer size for translit() enlarged to handle a full string

PR:		803, 4098
This commit is contained in:
Jonathan Lemon 1997-08-18 21:01:45 +00:00
parent 7256f6b3ab
commit ef2cea8123
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=28386

View File

@ -39,7 +39,7 @@
static char sccsid[] = "@(#)eval.c 8.1 (Berkeley) 6/6/93";
#endif
static const char rcsid[] =
"$Id$";
"$Id: eval.c,v 1.7 1997/07/23 06:50:04 charnier Exp $";
#endif /* not lint */
/*
@ -307,7 +307,7 @@ register int td;
* characters in the "to" string.
*/
if (argc > 3) {
char temp[MAXTOK];
char temp[STRSPMAX+1];
if (argc > 4)
map(temp, argv[2], argv[3], argv[4]);
else
@ -617,9 +617,13 @@ register int argc;
if (argc > 2) {
if (*argv[2])
lquote = *argv[2];
else
lquote = LQUOTE;
if (argc > 3) {
if (*argv[3])
rquote = *argv[3];
else
rquote = RQUOTE;
}
else
rquote = lquote;
@ -661,6 +665,7 @@ void
dodiv(n)
register int n;
{
oindex = n;
if (n < 0 || n >= MAXOUT)
n = 0; /* bitbucket */
if (outfile[n] == NULL) {
@ -668,7 +673,6 @@ register int n;
if ((outfile[n] = fopen(m4temp, "w")) == NULL)
errx(1, "%s: cannot divert", m4temp);
}
oindex = n;
active = outfile[n];
}