=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/tmux/utf8.c,v retrieving revision 1.9 retrieving revision 1.10 diff -c -r1.9 -r1.10 *** src/usr.bin/tmux/utf8.c 2014/04/02 18:12:18 1.9 --- src/usr.bin/tmux/utf8.c 2014/04/17 14:45:49 1.10 *************** *** 1,4 **** ! /* $OpenBSD: utf8.c,v 1.9 2014/04/02 18:12:18 nicm Exp $ */ /* * Copyright (c) 2008 Nicholas Marriott --- 1,4 ---- ! /* $OpenBSD: utf8.c,v 1.10 2014/04/17 14:45:49 nicm Exp $ */ /* * Copyright (c) 2008 Nicholas Marriott *************** *** 247,254 **** /* Check if two width tree entries overlap. */ int ! utf8_overlap( ! struct utf8_width_entry *item1, struct utf8_width_entry *item2) { if (item1->first >= item2->first && item1->first <= item2->last) return (1); --- 247,253 ---- /* Check if two width tree entries overlap. */ int ! utf8_overlap(struct utf8_width_entry *item1, struct utf8_width_entry *item2) { if (item1->first >= item2->first && item1->first <= item2->last) return (1);