svn commit: r334008 - head/bin/sh

O. Hartmann ohartmann at walstatt.org
Tue May 22 08:17:56 UTC 2018


On Mon, 21 May 2018 21:45:53 -0700
Cy Schubert <Cy.Schubert at cschubert.com> wrote:

> In message <20180522061339.2149763e at freyja.zeit4.iv.bundesimmobilien.de>
> , "O. H
> artmann" writes:
> > On Mon, 21 May 2018 21:52:48 +0000 (UTC)
> > Jilles Tjoelker <jilles at FreeBSD.org> wrote:
> >  
> > > Author: jilles
> > > Date: Mon May 21 21:52:48 2018
> > > New Revision: 334008
> > > URL: https://svnweb.freebsd.org/changeset/base/334008
> > > 
> > > Log:
> > >   sh: Split CNL syntax category to avoid a check on state[level].syntax
> > >   
> > >   No functional change is intended.
> > > 
> > > Modified:
> > >   head/bin/sh/mksyntax.c
> > >   head/bin/sh/parser.c
> > > 
> > > Modified: head/bin/sh/mksyntax.c
> > > ===========================================================================  
> > ===  
> > > --- head/bin/sh/mksyntax.c	Mon May 21 21:44:47 2018
> > > (r334007) +++ head/bin/sh/mksyntax.c	Mon May 21 21:52:48
> > > 2018	(r334008) @@ -65,6 +65,7 @@ struct synclass {
> > >  static const struct synclass synclass[] = {
> > >  	{ "CWORD",	"character is nothing special" },
> > >  	{ "CNL",	"newline character" },
> > > +	{ "CQNL",	"newline character in quotes" },
> > >  	{ "CBACK",	"a backslash character" },
> > >  	{ "CSBACK",	"a backslash character in single quotes" },
> > >  	{ "CSQUOTE",	"single quote" },
> > > @@ -185,7 +186,7 @@ main(int argc __unused, char **argv __unused)
> > >  	fputs("\n/* syntax table used when in double quotes */\n",
> > > cfile); init("dqsyntax");
> > >  	add_default();
> > > -	add("\n", "CNL");
> > > +	add("\n", "CQNL");
> > >  	add("\\", "CBACK");
> > >  	add("\"", "CENDQUOTE");
> > >  	add("`", "CBQUOTE");
> > > @@ -198,7 +199,7 @@ main(int argc __unused, char **argv __unused)
> > >  	fputs("\n/* syntax table used when in single quotes */\n",
> > > cfile); init("sqsyntax");
> > >  	add_default();
> > > -	add("\n", "CNL");
> > > +	add("\n", "CQNL");
> > >  	add("\\", "CSBACK");
> > >  	add("'", "CENDQUOTE");
> > >  	/* ':/' for tilde expansion, '-^]' for [a\-x] pattern ranges */
> > > @@ -208,7 +209,7 @@ main(int argc __unused, char **argv __unused)
> > >  	fputs("\n/* syntax table used when in arithmetic */\n", cfile);
> > >  	init("arisyntax");
> > >  	add_default();
> > > -	add("\n", "CNL");
> > > +	add("\n", "CQNL");
> > >  	add("\\", "CBACK");
> > >  	add("`", "CBQUOTE");
> > >  	add("\"", "CIGN");
> > > 
> > > Modified: head/bin/sh/parser.c
> > > ===========================================================================  
> > ===  
> > > --- head/bin/sh/parser.c	Mon May 21 21:44:47 2018	(r334007)
> > > +++ head/bin/sh/parser.c	Mon May 21 21:52:48 2018	(r334008)
> > > @@ -1434,9 +1434,10 @@ readtoken1(int firstc, char const *initialsyntax,
> > > co  
> > ns  
> > >  
> > >  			switch(synentry) {
> > >  			case CNL:	/* '\n' */
> > > -				if (level == 0 &&
> > > -				    state[level].syntax == BASESYNTAX)
> > > +				if (level == 0)
> > >  					goto endword;	/* exit
> > > outer loop */
> > > +				/* FALLTHROUGH */
> > > +			case CQNL:
> > >  				USTPUTC(c, out);
> > >  				plinno++;
> > >  				if (doprompt)
> > > _______________________________________________
> > > svn-src-head at freebsd.org mailing list
> > > https://lists.freebsd.org/mailman/listinfo/svn-src-head
> > > To unsubscribe, send any mail to "svn-src-head-unsubscribe at freebsd.org"  
> >
> >
> > Have this been tested? Doesn't compile for me:
> >
> > [...]
> > Building /usr/obj/usr/src/amd64.amd64/kerberos5/libexec/hprop/hprop
> > --- all_subdir_rescue ---
> > --- parser.o ---
> > /usr/src/bin/sh/parser.c:1440:9: error: use of undeclared identifier 'CQNL'
> >                         case CQNL:
> >                              ^
> > --- all_subdir_gnu ---
> > Building /usr/obj/usr/src/amd64.amd64/gnu/usr.bin/gdb/libgdb/amd64bsd-nat.o
> > --- all_subdir_rescue ---
> > 1 error generated.
> > *** [parser.o] Error code 1
> >
> > make[6]: stopped in /usr/src/bin/sh
> >  
> 
> CQNL is defined in /usr/obj/opt/src/svn-current/amd64.amd64/bin/sh/synta
> x.h, generated by mksyntax.
> 
> slippy$ ag -s CQNL /export/obj/opt/src/svn-current/amd64.amd64/bin/sh/*.
> h
> /export/obj/opt/src/svn-current/amd64.amd64/bin/sh/syntax.h
> 11:#define CQNL 2			/* newline character in quotes */
> slippy$ 
> 
> Remove the file if it's not defined in your syntax.h.
> 
> Just out of interest, do you use meta mode?

I think such a question is of common interest if errors/bugs like that occur:
Yes, I use/compile world/kernel with META mode.
> 
> 

Thanks,

kind regards,

oh


More information about the svn-src-all mailing list