aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/sc_interp.c5
1 files changed, 0 insertions, 5 deletions
diff --git a/src/sc_interp.c b/src/sc_interp.c
index 44f9412..ecb94d1 100644
--- a/src/sc_interp.c
+++ b/src/sc_interp.c
@@ -889,7 +889,6 @@ static int in_macro(SCInterpreter *scin)
static int add_text(struct frame *fr, PangoContext *pc, SCBlock *bl,
PangoLanguage *lang, int editable, SCInterpreter *scin)
{
- glong len_chars;
const char *text = sc_block_contents(bl);
size_t start, len_bytes;
PangoFontDescription *fontdesc;
@@ -901,10 +900,6 @@ static int add_text(struct frame *fr, PangoContext *pc, SCBlock *bl,
/* Empty block? */
if ( text == NULL ) return 1;
- /* Zero-length block? */
- len_chars = g_utf8_strlen(text, -1);
- if ( len_chars == 0 ) return 1;
-
fontdesc = sc_interp_get_fontdesc(scin);
col = sc_interp_get_fgcol(scin);
mrb = sc_interp_get_macro_real_block(scin);