diff options
Diffstat (limited to 'indra/lscript')
-rw-r--r-- | indra/lscript/lscript_compile/indra.l | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/indra/lscript/lscript_compile/indra.l b/indra/lscript/lscript_compile/indra.l index 08c2683665..37435c2e97 100644 --- a/indra/lscript/lscript_compile/indra.l +++ b/indra/lscript/lscript_compile/indra.l @@ -758,15 +758,8 @@ void comment() { char c; -#if LL_DARWIN while ((c = yyinput()) != '\n' && c != 0 && c != EOF) ; -#else - while ((c = yyinput()) != '\n' && c != 0) - ; -#endif - - } void count() |