From e795b355024bab9e6b6dfb519963a6f84d1f1d96 Mon Sep 17 00:00:00 2001 From: Kazu Yamamoto Date: Mon, 27 Feb 2012 11:03:27 +0900 Subject: [PATCH] error "foo" instead of undefined. --- elisp/ghc-flymake.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/elisp/ghc-flymake.el b/elisp/ghc-flymake.el index 211d29c..89f80fe 100644 --- a/elisp/ghc-flymake.el +++ b/elisp/ghc-flymake.el @@ -159,7 +159,7 @@ (insert fn) (dotimes (i arity) (insert " _")) - (insert " = undefined\n"))))) + (insert " = error \"" fn "\""))))) ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;