Skip to content
Snippets Groups Projects
Commit c75c09a3 authored by Michael Leuschel's avatar Michael Leuschel
Browse files

treat unicode line and paragraph seperators as newlines


it seems that is the standard behaviour now
this will also enable to send formulas over the ProB parser
repl in a single line, using 8232 as line seperator

Signed-off-by: default avatarMichael Leuschel <leuschel@uni-duesseldorf.de>
parent 605ddb27
Branches
Tags
No related merge requests found
Pipeline #76764 passed
......@@ -87,6 +87,8 @@ public class Lexer
}
break;
case 13:
case 8232: // Unicode line separator
case 8233: // Unicode paragraph separator
line++;
pos = 0;
cr = true;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment