From 86cbfbc8642a5d4c3c8dff0c59d9fc36f1fa2843 Mon Sep 17 00:00:00 2001 From: Brian Russell Date: Tue, 12 Apr 2016 14:13:15 -0400 Subject: [PATCH] Added CSV change to CDL.java --- CDL.java | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/CDL.java b/CDL.java index aaa39cd..47b84ae 100644 --- a/CDL.java +++ b/CDL.java @@ -69,7 +69,12 @@ public class CDL { for (;;) { c = x.next(); if (c == q) { - break; + //Handle escaped double-quote + if(x.next() != '\"') + { + x.back(); + break; + } } if (c == 0 || c == '\n' || c == '\r') { throw x.syntaxError("Missing close quote '" + q + "'.");