]> Nishi Git Mirror - gwion.git/commitdiff
:art: Remove unreachable in escape
authorfennecdjay <astor.jeremie@wanadoo.fr>
Sun, 7 Jul 2019 18:36:44 +0000 (20:36 +0200)
committerfennecdjay <astor.jeremie@wanadoo.fr>
Sun, 7 Jul 2019 18:36:44 +0000 (20:36 +0200)
src/emit/escape.c

index bbd68112beff06e3cd3d5aaeff0ff7a7d1f6071c..b9d492114ae88d0aae39e8b50c3eccb3c61046fe 100644 (file)
@@ -36,10 +36,6 @@ m_bool escape_str(const Emitter emit, const m_str base, const loc_t pos) {
   while(*str_lit) {
     if(*str_lit == '\\')  {
       ++str_lit;
-      if(*str_lit == '\0') {
-        env_err(emit->env, pos, _("invalid: string ends with escape charactor '\\'"));
-        return GW_ERROR;
-      }
       const unsigned char c = *(str_lit);
       const unsigned char c2 = *(str_lit+1);
       if(c >= '0' && c <= '7') {