summaryrefslogtreecommitdiff
path: root/compiler/hsSyn
diff options
context:
space:
mode:
authorSimon Marlow <marlowsd@gmail.com>2011-08-26 16:15:11 +0100
committerSimon Marlow <marlowsd@gmail.com>2011-08-26 22:52:06 +0100
commit3b8d128701afe572969abb1dbd8af2a095b9b661 (patch)
tree895ecdc40987bde5bae90c98927836349f262add /compiler/hsSyn
parent216091d6737f44ebf1227dc92cd763452beae6fc (diff)
downloadhaskell-3b8d128701afe572969abb1dbd8af2a095b9b661.tar.gz
simpleImportDecl: default to unsafe, not safe
Diffstat (limited to 'compiler/hsSyn')
-rw-r--r--compiler/hsSyn/HsImpExp.lhs2
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/hsSyn/HsImpExp.lhs b/compiler/hsSyn/HsImpExp.lhs
index 0f7ad6e678..74f97b24af 100644
--- a/compiler/hsSyn/HsImpExp.lhs
+++ b/compiler/hsSyn/HsImpExp.lhs
@@ -48,7 +48,7 @@ simpleImportDecl mn = ImportDecl {
ideclName = noLoc mn,
ideclPkgQual = Nothing,
ideclSource = False,
- ideclSafe = True,
+ ideclSafe = False,
ideclImplicit = False,
ideclQualified = False,
ideclAs = Nothing,