meta.in revision 1.1
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.1Spgoyettea\bc		&	abc	abc
81.1Spgoyettea\		&C	EESCAPE
91.1Spgoyettea\\bc		&	a\bc	a\bc
101.1Spgoyette\{		bC	BADRPT
111.1Spgoyettea\[b		&	a[b	a[b
121.1Spgoyettea[b		&C	EBRACK
131.1Spgoyette# trailing $ is a peculiar special case for the BRE code
141.1Spgoyettea$		&	a	a
151.1Spgoyettea$		&	a$
161.1Spgoyettea\$		&	a
171.1Spgoyettea\$		&	a$	a$
181.1Spgoyettea\\$		&	a
191.1Spgoyettea\\$		&	a$
201.1Spgoyettea\\$		&	a\$
211.1Spgoyettea\\$		&	a\	a\
22