From 0cad026db769c6269e0047acad3f0fde3c760baa Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Villemot?= <sebastien.villemot@ens.fr> Date: Mon, 21 Feb 2011 16:31:51 +0100 Subject: [PATCH] Preprocessor: fix bug introduced in 412e8a7da0f1ceed51a5c8d88c27a9733b4daccb The transpose sign (single quote) was no longer recognized in native statements --- DynareFlex.ll | 1 + 1 file changed, 1 insertion(+) diff --git a/DynareFlex.ll b/DynareFlex.ll index 2ed5b6f7..8e661a03 100644 --- a/DynareFlex.ll +++ b/DynareFlex.ll @@ -581,6 +581,7 @@ string eofbuff; /* Add the native statement */ <NATIVE>{ [^/%*\n\.\'\"]* | + \' | \'[^\'\n]*\' | \"[^\"\n]*\" | \.{1,2} | -- GitLab