From f6bc0fd9fcfb2e7b43ecfbce0031a626d9118240 Mon Sep 17 00:00:00 2001 From: Kristaps Dzonsons Date: Sat, 23 Jul 2011 09:47:25 +0000 Subject: The circumflex is also a special space character. Note this and clean up some documentation in eqn.7. Also add some version notes, although I'm not ready for a release yet. --- eqn.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'eqn.c') diff --git a/eqn.c b/eqn.c index 9fa4602a..e43a0f2d 100644 --- a/eqn.c +++ b/eqn.c @@ -1,4 +1,4 @@ -/* $Id: eqn.c,v 1.30 2011/07/22 14:59:02 kristaps Exp $ */ +/* $Id: eqn.c,v 1.31 2011/07/23 09:47:25 kristaps Exp $ */ /* * Copyright (c) 2011 Kristaps Dzonsons * @@ -648,7 +648,7 @@ again: if ('{' == *start || '}' == *start) ssz = 1; else - ssz = strcspn(start + 1, " ~\"{}\t") + 1; + ssz = strcspn(start + 1, " ^~\"{}\t") + 1; next = start + (int)ssz; if ('\0' == *next) next = NULL; @@ -662,6 +662,7 @@ again: ep->cur++; while (' ' == ep->data[(int)ep->cur] || '\t' == ep->data[(int)ep->cur] || + '^' == ep->data[(int)ep->cur] || '~' == ep->data[(int)ep->cur]) ep->cur++; } else { -- cgit v1.2.3