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

[project @ 1999-01-15 13:32:19 by simonm]

fix isAlphanum/isAlphaNum problems.
parent 2602df98
No related branches found
No related tags found
No related merge requests found
......@@ -38,7 +38,11 @@ module OccName (
#include "HsVersions.h"
#if __HASKELL1__ > 4
import Char ( isAlpha, isUpper, isLower, isAlphaNum{-sigh-}, ord )
#else
import Char ( isAlpha, isUpper, isLower, isAlphanum, ord )
#endif
import Util ( thenCmp )
import FiniteMap ( FiniteMap, emptyFM, lookupFM, addToFM, elemFM )
import Outputable
......
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