From 643e2937c42110f35949c3debe191a48666ad36c Mon Sep 17 00:00:00 2001 From: Pietro Gagliardi Date: Mon, 19 Dec 2016 17:15:48 -0500 Subject: [PATCH] More stuff I guess? --- common/exp_attrdll.c | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/common/exp_attrdll.c b/common/exp_attrdll.c index 0340d744..45717b54 100644 --- a/common/exp_attrdll.c +++ b/common/exp_attrdll.c @@ -342,6 +342,13 @@ void attrlistInsertCharactersUnattributed(struct attrlist *alist, size_t start, // If start == 0, the attributes are those of character 0. void attrlistInsertCharactersExtendingAttributes(struct attrlist *alist, size_t start, size_t count) { + size_t from; + + from = start - 1; + if (start == 0) + from = 0; + + TODO } void attrlistRemoveAttribute(struct attrlist *alist, uiAttribute type, size_t start, size_t end)