Skip to content

Commit

Permalink
Fix bug in implementation of \mspace.
Browse files Browse the repository at this point in the history
Closes jgm#195.
  • Loading branch information
jgm committed Jul 22, 2022
1 parent c2898a2 commit c884291
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/Text/TeXMath/Readers/TeX.hs
Original file line number Diff line number Diff line change
Expand Up @@ -655,8 +655,7 @@ root c = do
(ERoot <$> inbrackets <*> texToken) <|> (ESqrt <$> texToken)

xspace :: Text -> TP Exp
xspace "\\mspace" = do
ctrlseq "mspace"
xspace "\\mspace" =
braces $ do
len <- many1 digit
lexeme $ string "mu"
Expand Down

0 comments on commit c884291

Please sign in to comment.