LaTeX reader: Control sequences can't be followed by a letter.
This fixes a bug where `\begingroup` was parsed as `\begin` followed by `group`.
This commit is contained in:
parent
66f8dc14b7
commit
54c9d4348a
1 changed files with 1 additions and 1 deletions
|
@ -82,7 +82,7 @@ controlSeq name = try $ do
|
|||
case name of
|
||||
"" -> mzero
|
||||
[c] | not (isLetter c) -> string [c]
|
||||
cs -> string cs <* optional sp
|
||||
cs -> string cs <* notFollowedBy letter <* optional sp
|
||||
return name
|
||||
|
||||
sp :: LP ()
|
||||
|
|
Loading…
Add table
Reference in a new issue