Skip to content
Snippets Groups Projects
Commit 0f16ce56 authored by Simon Marlow's avatar Simon Marlow
Browse files

[haddock @ 2002-05-09 12:45:19 by simonmar]

Add 'stdcall' keyword
parent 1937e428
No related branches found
No related tags found
No related merge requests found
-----------------------------------------------------------------------------
-- $Id: HsLexer.lhs,v 1.7 2002/05/09 10:34:44 simonmar Exp $
-- $Id: HsLexer.lhs,v 1.8 2002/05/09 12:45:19 simonmar Exp $
--
-- (c) The GHC Team, 1997-2000
--
......@@ -176,7 +176,8 @@ reserved_ids = [
( "where", KW_Where ),
( "as", KW_As ),
( "qualified", KW_Qualified ),
( "hiding", KW_Hiding )
( "hiding", KW_Hiding ),
( "stdcall", KW_StdCall )
]
isIdent c = isAlpha c || isDigit c || c == '\'' || c == '_'
......
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