From 0f6347908d61df583d21cc07451016b2f14c7553 Mon Sep 17 00:00:00 2001 From: "C. McEnroe" Date: Wed, 13 Jan 2021 19:00:38 -0500 Subject: Match \ before newline in string as Escape --- bin/c11.l | 1 + 1 file changed, 1 insertion(+) diff --git a/bin/c11.l b/bin/c11.l index bbce5022..b9490f2e 100644 --- a/bin/c11.l +++ b/bin/c11.l @@ -101,6 +101,7 @@ register|restrict|return|static|struct|switch|typedef|union|volatile|while | } { + "\\\n" | "\\"[''""?\\abfnrtv] | "\\"([0-7]{1,3}) | "\\x"([[:xdigit:]]{2}) | -- cgit 1.4.1