update of packages
This commit is contained in:
@@ -1,6 +1,8 @@
|
||||
(define-package "tablist" "20200427.2205" "Extended tabulated-list-mode"
|
||||
(define-package "tablist" "20231019.1126" "Extended tabulated-list-mode"
|
||||
'((emacs "24.3"))
|
||||
:commit "faab7a035ef2258cc4ea2182f67e3aedab7e2af9" :authors
|
||||
:commit "fcd37147121fabdf003a70279cf86fbe08cfac6f" :authors
|
||||
'(("Andreas Politz" . "politza@fh-trier.de"))
|
||||
:maintainers
|
||||
'(("Andreas Politz" . "politza@fh-trier.de"))
|
||||
:maintainer
|
||||
'("Andreas Politz" . "politza@fh-trier.de")
|
||||
|
||||
@@ -5,7 +5,7 @@
|
||||
;; Author: Andreas Politz <politza@fh-trier.de>
|
||||
;; Keywords: extensions, lisp
|
||||
;; Package: tablist
|
||||
;; Version: 1.0
|
||||
;; Version: 1.1
|
||||
;; Package-Requires: ((emacs "24.3"))
|
||||
|
||||
;; This program is free software; you can redistribute it and/or modify
|
||||
@@ -298,7 +298,8 @@ as argument for the function `completion-in-region'.")
|
||||
|
||||
;;;###autoload
|
||||
(define-minor-mode tablist-minor-mode
|
||||
nil nil nil nil
|
||||
"Toggle tablist minor mode."
|
||||
:global nil
|
||||
(unless (derived-mode-p 'tabulated-list-mode)
|
||||
(error "Buffer is not in Tabulated List Mode"))
|
||||
(tablist-init (not tablist-minor-mode)))
|
||||
@@ -779,7 +780,7 @@ STATE is a return value of `tablist-get-mark-state'."
|
||||
|
||||
(defun tablist-repeat-over-lines (arg function)
|
||||
"Call FUNCTION for the next ARG entries."
|
||||
;; Move out of potentially invisble area.
|
||||
;; Move out of potentially invisible area.
|
||||
(tablist-skip-invisible-entries)
|
||||
(let ((pos (make-marker)))
|
||||
(while (and (> arg 0)
|
||||
@@ -989,7 +990,8 @@ Optional REVERT-P means, revert the display afterwards."
|
||||
kmap))
|
||||
|
||||
(define-minor-mode tablist-edit-column-minor-mode
|
||||
"" nil nil nil
|
||||
"Toggle tablist-edit-column minor mode."
|
||||
:global nil
|
||||
(unless (or tablist-minor-mode
|
||||
(derived-mode-p 'tablist-mode))
|
||||
(error "Not in a tablist buffer"))
|
||||
|
||||
Reference in New Issue
Block a user