From 8eedc4d98d1c5799422d8b9b99cf3d5fd1b3efa3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ulysse=20G=C3=A9rard?= Date: Fri, 26 Apr 2024 16:38:40 +0200 Subject: [PATCH] Fix a typo in lexer_raw --- src/ocaml/preprocess/lexer_raw.mll | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ocaml/preprocess/lexer_raw.mll b/src/ocaml/preprocess/lexer_raw.mll index b2993c685..3f0af13e3 100644 --- a/src/ocaml/preprocess/lexer_raw.mll +++ b/src/ocaml/preprocess/lexer_raw.mll @@ -416,7 +416,7 @@ let hex_float_literal = ('.' ['0'-'9' 'A'-'F' 'a'-'f' '_']* )? (['p' 'P'] ['+' '-']? ['0'-'9'] ['0'-'9' '_']* )? let literal_modifier = ['G'-'Z' 'g'-'z'] -let raw_ident_escape = "\#" +let raw_ident_escape = "\\#" refill {fun k lexbuf -> Refill (fun () -> k lexbuf)}