From af841edaccd5f251bc4f63ad3e6e2e735b660768 Mon Sep 17 00:00:00 2001 From: Simon Tatham Date: Mon, 24 Jan 2005 12:52:42 +0000 Subject: `origtext' was not getting set correctly for escaped tokens (\\, \{, \}), making it difficult to put CSS fragments in HTML configuration. [originally from svn r5193] --- input.c | 1 + 1 file changed, 1 insertion(+) (limited to 'input.c') diff --git a/input.c b/input.c index a616ac9..493449c 100644 --- a/input.c +++ b/input.c @@ -426,6 +426,7 @@ token get_token(input *in) { c == '#' || c == '{' || c == '}' || c == '.') { /* single-char command */ rdadd(&rs, c); + prevpos = rsc.pos; } else if (c == 'u') { int len = 0; do { -- cgit v1.1