adding "qualified" and "hiding"

This commit is contained in:
Kazu Yamamoto 2010-03-17 22:37:11 +09:00
parent 14ef0f8372
commit c22c3bafae

View File

@ -46,7 +46,7 @@
(defvar ghc-loaded-module nil) (defvar ghc-loaded-module nil)
(defun ghc-comp-init () (defun ghc-comp-init ()
(setq ghc-module-names (ghc-load-keyword "list")) (setq ghc-module-names (cons "hiding" (cons "qualified" (ghc-load-keyword "list"))))
(setq ghc-keyword-Prelude (ghc-load-keyword "browse" "Prelude")) (setq ghc-keyword-Prelude (ghc-load-keyword "browse" "Prelude"))
(setq ghc-loaded-module '("Prelude")) (setq ghc-loaded-module '("Prelude"))
(ghc-merge-keywords) (ghc-merge-keywords)