Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/Parser.pm
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ C1: goto E2 if (pos==length);
$w.="\003$1" if (/\G(.)/sgc);
goto $ps;

V1: if (m/\G{([^}]*)}/sgc || m/\G(\d)/sgc || m/\G(\w+)/sgc) { $w.="\001$1\001" }
V1: if (m/\G\{([^}]*)\}/sgc || m/\G(\d)/sgc || m/\G(\w+)/sgc) { $w.="\001$1\001" }
goto $ps;

E1: $w='' if (!defined($w) && $wl[2]==1);
Expand Down Expand Up @@ -149,7 +149,7 @@ Q2: goto E1 if (pos==length);
$result.=$1 if (/\G(.)/sgc);
goto S0;

V1: if (m/\G{([^}]*)}/sgc || m/\G(\d)/sgc || m/\G(\w+)/sgc) { $result.="\001$1\001" }
V1: if (m/\G\{([^}]*)\}/sgc || m/\G(\d)/sgc || m/\G(\w+)/sgc) { $result.="\001$1\001" }
goto S0;

C1: goto E1 if (pos==length);
Expand Down