Skip to content
Snippets Groups Projects
Commit 14abcb39 authored by simonmar's avatar simonmar
Browse files

[haddock @ 2002-05-09 10:34:44 by simonmar]

Fix buglet
parent 9f9522a4
No related branches found
No related tags found
No related merge requests found
-----------------------------------------------------------------------------
-- $Id: HsLexer.lhs,v 1.6 2002/05/08 13:39:56 simonmar Exp $
-- $Id: HsLexer.lhs,v 1.7 2002/05/09 10:34:44 simonmar Exp $
--
-- (c) The GHC Team, 1997-2000
--
......@@ -352,7 +352,7 @@ lexToken cont s loc y x =
do_doc ('#':s) f = f DocOptions cont s loc y x
do_doc ('*':s) f = section 1 s
where section n ('*':s) = section (n+1) s
section n _ = f (DocSection n) cont s loc y x
section n s = f (DocSection n) cont s loc y x
do_doc _ _ = error "Internal error: HsLexer.do_doc"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment