From f6b00c00c72d62b34520244d8ca8aa1c638830db Mon Sep 17 00:00:00 2001 From: simonm <unknown> Date: Tue, 3 Feb 1998 11:39:00 +0000 Subject: [PATCH] [project @ 1998-02-03 11:39:00 by simonm] missing '('. --- ghc/lib/std/PrelBase.lhs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ghc/lib/std/PrelBase.lhs b/ghc/lib/std/PrelBase.lhs index 3f5bc1df2d59..2d504bceff0c 100644 --- a/ghc/lib/std/PrelBase.lhs +++ b/ghc/lib/std/PrelBase.lhs @@ -791,7 +791,7 @@ intToDigit :: Int -> Char intToDigit i | i >= 0 && i <= 9 = toEnum (fromEnum '0' + i) | i >= 10 && i <= 15 = toEnum (fromEnum 'a' + i -10) - | otherwise = error "Char.intToDigit: not a digit" ++ show i) + | otherwise = error ("Char.intToDigit: not a digit" ++ show i) \end{code} -- GitLab