diff --git a/doc/haskell-mode.texi b/doc/haskell-mode.texi index 30d0af3bb..b2efd517e 100644 --- a/doc/haskell-mode.texi +++ b/doc/haskell-mode.texi @@ -128,11 +128,12 @@ Requests}. If you are reading this, you have most likely already managed to install Haskell Mode in one way or another. -@findex haskell-customize +@cindex customizing Most of Haskell Mode's settings are configurable via customizable variables (@pxref{Easy Customization,,,emacs}, for details). You can use -@kbd{M-x haskell-customize} to browse the @code{haskell} customization -sub-tree. + +@kbd{M-x customize-group @key{RET} haskell} to browse the @code{haskell} +customization sub-tree. @vindex haskell-mode-hook One of the important setting you should customize is the diff --git a/haskell-customize.el b/haskell-customize.el index dd3f3c172..e97f4c284 100644 --- a/haskell-customize.el +++ b/haskell-customize.el @@ -406,15 +406,4 @@ same vein as `haskell-indent-spaces'." 'ghci) haskell-process-type)) -;;;###autoload -(defun haskell-customize () - "Browse the haskell customize sub-tree. -This calls 'customize-browse' with haskell as argument and makes -sure all haskell customize definitions have been loaded." - (interactive) - ;; make sure all modules with (defcustom ...)s are loaded - (mapc 'require - '(haskell-checkers haskell-compile haskell-doc haskell-font-lock haskell-indentation haskell-indent haskell-interactive-mode haskell-menu haskell-process inf-haskell)) - (customize-browse 'haskell)) - (provide 'haskell-customize)