Commit 98808854 by Zachary Snow

Revert "allow escaped newline in macro arguments"

This reverts commit ba7fbd55.
parent 8ae89a7b
......@@ -780,11 +780,7 @@ takeMacroArguments = do
case (stack, ch) of
( s,'\\') -> do
ch2 <- takeChar
if ch2 == '\n'
then do
dropWhitespace
loop curr s
else loop (curr ++ [ch, ch2]) s
loop (curr ++ [ch, ch2]) s
([ ], ',') -> return (curr, False)
([ ], ')') -> return (curr, True)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment