From 056dfeb1696f016b91f112d65599c08ef7c2caf8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Villemot?= 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 --- preprocessor/DynareFlex.ll | 1 + 1 file changed, 1 insertion(+) diff --git a/preprocessor/DynareFlex.ll b/preprocessor/DynareFlex.ll index 2ed5b6f79..8e661a032 100644 --- a/preprocessor/DynareFlex.ll +++ b/preprocessor/DynareFlex.ll @@ -581,6 +581,7 @@ string eofbuff; /* Add the native statement */ { [^/%*\n\.\'\"]* | + \' | \'[^\'\n]*\' | \"[^\"\n]*\" | \.{1,2} |