Merge branch 'obsd-master'

This commit is contained in:
Thomas Adam
2015-04-22 10:05:54 +01:00
21 changed files with 477 additions and 245 deletions

4
utf8.c
View File

@ -291,9 +291,9 @@ utf8_build(void)
while (*ptr != NULL) {
node = *ptr;
if (item->last < node->first)
ptr = &(node->left);
ptr = &node->left;
else if (item->first > node->last)
ptr = &(node->right);
ptr = &node->right;
}
*ptr = item;
}