From 91e8b1ce84603ca8f1166b01e3b7c69abd5e3daf Mon Sep 17 00:00:00 2001 From: Taylor Price Date: Thu, 21 Feb 2013 10:10:22 -0800 Subject: [PATCH] Change the - (dash) in the header guard to _ (underscore) to fix an unxepected characters error --- syntax_checkers/haskell/ghc-mod.vim | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/syntax_checkers/haskell/ghc-mod.vim b/syntax_checkers/haskell/ghc-mod.vim index ce7bd8fc..e9c1372b 100644 --- a/syntax_checkers/haskell/ghc-mod.vim +++ b/syntax_checkers/haskell/ghc-mod.vim @@ -10,10 +10,10 @@ " "============================================================================ -if exists("g:loaded_syntastic_haskell_ghc-mod_checker") +if exists("g:loaded_syntastic_haskell_ghc_mod_checker") finish endif -let g:loaded_syntastic_haskell_ghc-mod_checker=1 +let g:loaded_syntastic_haskell_ghc_mod_checker=1 if !exists('g:syntastic_haskell_checker_args') let g:syntastic_haskell_checker_args = '--hlintOpt="--language=XmlSyntax"'