diff options
author | nicm <nicm> | 2014-04-17 14:45:49 +0000 |
---|---|---|
committer | nicm <nicm> | 2014-04-17 14:45:49 +0000 |
commit | a5d4b7f3d927b267e21aa34c2451669318536e46 (patch) | |
tree | 0348849c34d544593e61f9874a5bfbf46c324a23 /utf8.c | |
parent | f194f103a2c8301ba9eea67eefc3e15f76edbca5 (diff) | |
download | rtmux-a5d4b7f3d927b267e21aa34c2451669318536e46.tar.gz rtmux-a5d4b7f3d927b267e21aa34c2451669318536e46.tar.bz2 rtmux-a5d4b7f3d927b267e21aa34c2451669318536e46.zip |
Some more long lines.
Diffstat (limited to 'utf8.c')
-rw-r--r-- | utf8.c | 3 |
1 files changed, 1 insertions, 2 deletions
@@ -247,8 +247,7 @@ utf8_append(struct utf8_data *utf8data, u_char ch) /* Check if two width tree entries overlap. */ int -utf8_overlap( - struct utf8_width_entry *item1, struct utf8_width_entry *item2) +utf8_overlap(struct utf8_width_entry *item1, struct utf8_width_entry *item2) { if (item1->first >= item2->first && item1->first <= item2->last) return (1); |