Skip to content

Fix haskell-customize step #1 #794

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 3 commits into from
Aug 3, 2015
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Add ;;;###autoload to each defgroup
  • Loading branch information
William Kunkel committed Aug 3, 2015
commit 4a4e9aed7e59469087eee8d4e31f1ad53a7031ac
1 change: 1 addition & 0 deletions ghc-core.el
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@
(require 'haskell-mode)
(require 'haskell-font-lock)

;;;###autoload
(defgroup ghc-core nil
"Major mode for viewing pretty printed GHC Core output."
:link '(custom-manual "(haskell-mode)")
Expand Down
1 change: 1 addition & 0 deletions haskell-bot.el
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,7 @@

(require 'comint)

;;;###autoload
(defgroup haskell-bot nil
"Major mode for interacting with an inferior Bot session."
:group 'haskell
Expand Down
2 changes: 1 addition & 1 deletion haskell-cabal.el
Original file line number Diff line number Diff line change
Expand Up @@ -301,7 +301,7 @@ OTHER-WINDOW use `find-file-other-window'."
"help"
"run"))


;;;###autoload
(defgroup haskell-cabal nil
"Haskell cabal files"
:group 'haskell
Expand Down
1 change: 1 addition & 0 deletions haskell-checkers.el
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@

(require 'compile)

;;;###autoload
(defgroup haskell-checkers nil
"Run HLint as inferior of Emacs, parse error messages."
:group 'haskell)
Expand Down
1 change: 1 addition & 0 deletions haskell-compile.el
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@
(require 'compile)
(require 'haskell-cabal)

;;;###autoload
(defgroup haskell-compile nil
"Settings for Haskell compilation mode"
:link '(custom-manual "(haskell-mode)compilation")
Expand Down
2 changes: 2 additions & 0 deletions haskell-customize.el
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@
:type 'boolean
:group 'haskell-interactive)

;;;###autoload
(defgroup haskell nil
"Major mode for editing Haskell programs."
:link '(custom-manual "(haskell-mode)")
Expand Down Expand Up @@ -98,6 +99,7 @@ when showing type information about symbols."
(defvar haskell-process-end-hook nil
"Hook for when the haskell process ends.")

;;;###autoload
(defgroup haskell-interactive nil
"Settings for REPL interaction via `haskell-interactive-mode'"
:link '(custom-manual "(haskell-mode)haskell-interactive-mode")
Expand Down
1 change: 1 addition & 0 deletions haskell-debug.el
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;; Configuration

;;;###autoload
(defgroup haskell-debug nil
"Settings for debugging support."
:link '(custom-manual "(haskell-mode)haskell-debug")
Expand Down
1 change: 1 addition & 0 deletions haskell-decl-scan.el
Original file line number Diff line number Diff line change
Expand Up @@ -105,6 +105,7 @@
(require 'syntax)
(require 'imenu)

;;;###autoload
(defgroup haskell-decl-scan nil
"Haskell declaration scanning (`imenu' support)."
:link '(custom-manual "(haskell-mode)haskell-decl-scan-mode")
Expand Down
1 change: 1 addition & 0 deletions haskell-doc.el
Original file line number Diff line number Diff line change
Expand Up @@ -308,6 +308,7 @@
(require 'imenu)
(require 'eldoc)

;;;###autoload
(defgroup haskell-doc nil
"Show Haskell function types in echo area."
:group 'haskell
Expand Down
1 change: 1 addition & 0 deletions haskell-indent.el
Original file line number Diff line number Diff line change
Expand Up @@ -92,6 +92,7 @@

(defvar haskell-literate)

;;;###autoload
(defgroup haskell-indent nil
"Haskell indentation."
:group 'haskell
Expand Down
2 changes: 1 addition & 1 deletion haskell-indentation.el
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@
(defvar haskell-indentation-dyn-last-direction)
(defvar haskell-indentation-dyn-last-indentations)


;;;###autoload
(defgroup haskell-indentation nil
"Haskell indentation."
:link '(custom-manual "(haskell-mode)Indentation")
Expand Down
1 change: 1 addition & 0 deletions haskell-simple-indent.el
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,7 @@

(require 'haskell-mode)

;;;###autoload
(defgroup haskell-simple-indent nil
"Simple Haskell indentation."
:link '(custom-manual "(haskell-mode)Indentation")
Expand Down
1 change: 1 addition & 0 deletions inf-haskell.el
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,7 @@
;; Dynamically scoped variables.
(defvar find-tag-marker-ring)

;;;###autoload
(defgroup inferior-haskell nil
"Settings for REPL interaction via `inferior-haskell-mode'"
:link '(custom-manual "(haskell-mode)inferior-haskell-mode")
Expand Down
1 change: 1 addition & 0 deletions tests/compat/ert.el
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,7 @@

;;; UI customization options.

;;;###autoload
(defgroup ert ()
"ERT, the Emacs Lisp regression testing tool."
:prefix "ert-"
Expand Down