From 03d3c7c1b6bfd51de252bbe6b9b439d1c3222bcd Mon Sep 17 00:00:00 2001 From: Michael Kuryshev Date: Tue, 21 Apr 2015 06:42:19 +0300 Subject: [PATCH] Typo in docs. eval-after-load FORM must be quoted. --- haskell-mode.texi | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/haskell-mode.texi b/haskell-mode.texi index 583855da1..2ddadad58 100644 --- a/haskell-mode.texi +++ b/haskell-mode.texi @@ -594,7 +594,7 @@ used to visit the @file{.cabal} file. If you wish, you can bind @lisp (eval-after-load "haskell-mode" - (define-key haskell-mode-map (kbd "C-c v c") 'haskell-cabal-visit-file)) + '(define-key haskell-mode-map (kbd "C-c v c") 'haskell-cabal-visit-file)) @end lisp TODO/WRITEME