commit e2e189493e395eef839fd58800fbaaaf736152b9 parent 517ced5334f62771153cc16c73ba382c7da42f8e Author: Toby Goodwin <toby@paccrat.org> Date: Mon, 1 Sep 2014 22:44:05 +0100 add $"x as a synonym for $^x Diffstat:
M | lex.c | | | 2 | +- |
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/lex.c b/lex.c @@ -201,7 +201,7 @@ top: while ((c = gchar()) == ' ' || c == '\t') c = gchar(); if (c == '#') return COUNT; - if (c == '^') + if (c == '^' || c == '"') return FLAT; ugchar(c); return '$';