summary refs log tree commit diff
path: root/format.c
diff options
context:
space:
mode:
authorJune McEnroe <june@causal.agency>2018-09-13 16:15:16 -0400
committerJune McEnroe <june@causal.agency>2018-09-13 16:15:16 -0400
commit117e6ac9d62cbc4ed18a9087d5bc99e254885fdd (patch)
treed53d09fd0d7c137c7334563df074afc1200e28c2 /format.c
parentAvoid uninitialized x in uiRead (diff)
downloadcatgirl-117e6ac9d62cbc4ed18a9087d5bc99e254885fdd.tar.gz
catgirl-117e6ac9d62cbc4ed18a9087d5bc99e254885fdd.zip
Fix len for format->split at end of string
Diffstat (limited to '')
-rw-r--r--format.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/format.c b/format.c
index cb9cb15..8c2b0ed 100644
--- a/format.c
+++ b/format.c
@@ -68,6 +68,7 @@ bool formatParse(struct Format *format, const wchar_t *split) {
 	format->str += format->len;
 	if (!format->str[0]) {
 		if (split == format->str && !format->split) {
+			format->len = 0;
 			format->split = true;
 			return true;
 		}
d>2021-01-19Prefer tag matches not preceded by [[:alnum:]]June McEnroe Otherwise the "id" in "void" matches for "void id". 2021-01-19Escape \ and / in mtags search patternsJune McEnroe 2021-01-20Use mtags in source-filterJune McEnroe 2021-01-19Add mtags to generate tags for make and mdocJune McEnroe 2021-01-19Map tags to IDs using only [[:alnum:]-._]June McEnroe 2021-01-19Don't use a pager if reading standard inputJune McEnroe 2021-01-19Support BSD make syntax and match *.amJune McEnroe These don't really go together, but... 2021-01-19Match tab following escaped newline in make assignmentsJune McEnroe Otherwise it ends up going into Shell state. 2021-01-18Allow matching lexers using first input lineJune McEnroe