From 77e391cabcc83c209c31a6739f907000915f3416 Mon Sep 17 00:00:00 2001 From: Justin Ethier Date: Thu, 26 Oct 2017 22:35:11 +0000 Subject: [PATCH] Uncomment fast path --- scheme/base.sld | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scheme/base.sld b/scheme/base.sld index e2a54188..0a63fb55 100644 --- a/scheme/base.sld +++ b/scheme/base.sld @@ -978,7 +978,7 @@ ((string_type *)s)->num_cp = num_cp; ((string_type *)s)->str = alloca(sizeof(char) * (len + 1)); } - if (0 && num_cp == 1) { /* Fast path */ + if (num_cp == 1) { /* Fast path */ memset(((string_type *)s)->str, ch_buf[0], len); } else { char *buf = ((string_type *)s)->str;