From 0378e4195895ac1b1eb0199de261313fcdc00b3d Mon Sep 17 00:00:00 2001 From: Tom Hacohen Date: Wed, 26 Feb 2014 12:25:08 +0000 Subject: [PATCH] Evas textblock: removed unused internal function. --- src/lib/evas/canvas/evas_object_textblock.c | 19 ------------------- 1 file changed, 19 deletions(-) diff --git a/src/lib/evas/canvas/evas_object_textblock.c b/src/lib/evas/canvas/evas_object_textblock.c index 4297014838..0939c85e39 100644 --- a/src/lib/evas/canvas/evas_object_textblock.c +++ b/src/lib/evas/canvas/evas_object_textblock.c @@ -6029,25 +6029,6 @@ evas_textblock_string_escape_get(const char *string, int *len_ret) return _escaped_char_match(string, len_ret); } -/** - * @internal - * Appends the escaped char beteewn s and s_end to the curosr - * - * - * @param s the start of the string - * @param s_end the end of the string. - */ -static inline void -_append_escaped_char(Evas_Textblock_Cursor *cur, const char *s, - const char *s_end) -{ - const char *escape; - - escape = _escaped_char_get(s, s_end); - if (escape) - evas_textblock_cursor_text_append(cur, escape); -} - /** * @internal * prepends the escaped char beteewn s and s_end to the curosr