summaryrefslogtreecommitdiff
path: root/ghc
diff options
context:
space:
mode:
authorsof <unknown>1997-06-09 07:41:09 +0000
committersof <unknown>1997-06-09 07:41:09 +0000
commitedeb362f70b892ae56ad97a6b308ce53f8a4c2fd (patch)
tree657b37a694d867e433ff3184c1fdd79dc843b34b /ghc
parent3221d0140c4edc5cf79f75e8f876a63ff9ef0da6 (diff)
downloadhaskell-edeb362f70b892ae56ad97a6b308ce53f8a4c2fd.tar.gz
[project @ 1997-06-09 07:41:09 by sof]
Avoid use of commas in SLIT macros
Diffstat (limited to 'ghc')
-rw-r--r--ghc/compiler/typecheck/TcSimplify.lhs2
1 files changed, 1 insertions, 1 deletions
diff --git a/ghc/compiler/typecheck/TcSimplify.lhs b/ghc/compiler/typecheck/TcSimplify.lhs
index eddc3d3861..0c52f1db5a 100644
--- a/ghc/compiler/typecheck/TcSimplify.lhs
+++ b/ghc/compiler/typecheck/TcSimplify.lhs
@@ -727,7 +727,7 @@ terms of the signature.
\begin{code}
reduceErr insts sty
- = hang (ptext (SLIT("Context required by inferred type, but missing on a type signature")))
+ = hang (text "Context required by inferred type, but missing on a type signature")
4 (vcat (map (pprInst sty) (bagToList insts)))
\end{code}