11.1Spgoyette# metacharacters, backslashes
21.1Spgoyettea.c		&	abc	abc
31.1Spgoyettea[bc]d		&	abd	abd
41.1Spgoyettea\*c		&	a*c	a*c
51.1Spgoyettea\\b		&	a\b	a\b
61.1Spgoyettea\\\*b		&	a\*b	a\*b
71.2Schristos# legacy escape
81.2Schristos#a\bc		&	abc	abc
91.1Spgoyettea\		&C	EESCAPE
101.1Spgoyettea\\bc		&	a\bc	a\bc
111.1Spgoyette\{		bC	BADRPT
121.1Spgoyettea\[b		&	a[b	a[b
131.1Spgoyettea[b		&C	EBRACK
141.1Spgoyette# trailing $ is a peculiar special case for the BRE code
151.1Spgoyettea$		&	a	a
161.1Spgoyettea$		&	a$
171.1Spgoyettea\$		&	a
181.1Spgoyettea\$		&	a$	a$
191.1Spgoyettea\\$		&	a
201.1Spgoyettea\\$		&	a$
211.1Spgoyettea\\$		&	a\$
221.1Spgoyettea\\$		&	a\	a\
23