From 9a49ac51b255a39c06ec539c498327f3dad7d26b Mon Sep 17 00:00:00 2001 From: Yashas Date: Wed, 3 Jan 2018 18:09:54 +0530 Subject: [PATCH] stop removing `'\a` (internal multi-line delimiter) This reverts a part of https://github.com/Southclaws/pawn/commit/693591bdc3491133f2aa90498c4ad8d3aadd0eb7 which caused issues as described in #226. --- source/compiler/sc2.c | 3 --- 1 file changed, 3 deletions(-) diff --git a/source/compiler/sc2.c b/source/compiler/sc2.c index 306c908..92070c4 100644 --- a/source/compiler/sc2.c +++ b/source/compiler/sc2.c @@ -553,9 +553,6 @@ static void stripcom(unsigned char *line) } /* if */ } /* if */ } /* if */ - if (*line == '\a') { - memmove(line,line+1,strlen((char *)line+1)+1); - } } /* while */ #if !defined SC_LIGHT if (icomment==2) {