LaTeX reader: Don't crash on commands like \itemsep.

Closes #314.
This commit is contained in:
John MacFarlane
2011-11-12 13:20:29 -08:00
parent da57775171
commit bf4f8ffe55
+2 -1
View File
@@ -511,7 +511,8 @@ demacro (n,st,args) = try $ do
unknownCommand :: GenParser Char ParserState Block
unknownCommand = try $ do
spaces
notFollowedBy' $ oneOfStrings ["\\begin","\\end","\\item"]
notFollowedBy' $ oneOfStrings ["\\begin","\\end","\\item"] >>
notFollowedBy letter
state <- getState
when (stateParserContext state == ListItemState) $
notFollowedBy' (string "\\item")