Indentation fix in the lexer.

This commit is contained in:
Yorick Peterse 2014-05-04 18:06:43 +02:00
parent f18e8893de
commit baaa24a760
1 changed files with 4 additions and 4 deletions

View File

@ -259,11 +259,11 @@ module Oga
# Machine for processing double quoted strings.
string_dquote := |*
^dquote+ => {
emit(:T_STRING, ts, te)
};
^dquote+ => {
emit(:T_STRING, ts, te)
};
dquote => { fret; };
dquote => { fret; };
*|;
# Machine for processing single quoted strings.