editor: Removed unused utf8_characters() function

I left this in when I merged Jans patches.
This commit is contained in:
Kristian Høgsberg
2013-05-10 11:04:08 -04:00
parent b24e48e2ff
commit a0868a2d64
-11
View File
@@ -107,17 +107,6 @@ utf8_next_char(const char *p)
return NULL; return NULL;
} }
static uint32_t
utf8_characters(const char *p)
{
uint32_t offset;
for (offset = 0; *p != 0; offset++)
p = utf8_next_char(p);
return offset;
}
static void text_entry_redraw_handler(struct widget *widget, void *data); static void text_entry_redraw_handler(struct widget *widget, void *data);
static void text_entry_button_handler(struct widget *widget, static void text_entry_button_handler(struct widget *widget,
struct input *input, uint32_t time, struct input *input, uint32_t time,