summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndreas Politz <politza@hochschule-trier.de>2015-11-11 22:05:26 +0100
committerAndreas Politz <politza@hochschule-trier.de>2015-11-11 22:05:26 +0100
commit8767514598f3b85084b8db8340e001e223d8eb05 (patch)
tree0543772b85f15dee66c866e6497cdb9e87543ff6
parente2f2eb62d6fc955322cb80bd822e401505ce1155 (diff)
Adds autoloads for tablist
-rw-r--r--lisp/tablist.el2
1 files changed, 2 insertions, 0 deletions
diff --git a/lisp/tablist.el b/lisp/tablist.el
index ed497d5..65ad3bc 100644
--- a/lisp/tablist.el
+++ b/lisp/tablist.el
@@ -295,12 +295,14 @@ as argument for the function `completion-in-region'.")
(lambda nil
(add-to-list 'savehist-additional-variables 'tablist-named-filter)))
+;;;###autoload
(define-minor-mode tablist-minor-mode
nil nil nil nil
(unless (derived-mode-p 'tabulated-list-mode)
(error "Buffer is not in Tabulated List Mode"))
(tablist-init (not tablist-minor-mode)))
+;;;###autoload
(define-derived-mode tablist-mode tabulated-list-mode "TL"
(tablist-init))