summaryrefslogtreecommitdiff
path: root/lisp/tab-bar.el
diff options
context:
space:
mode:
authorJuri Linkov <juri@linkov.net>2019-11-17 00:19:42 +0200
committerJuri Linkov <juri@linkov.net>2019-11-17 00:19:42 +0200
commit3dcf06bfa035c3caaeac5ce5c585dbfc07f31331 (patch)
tree33e07a487f69ef7f987df6f1cd5383d650b8aa4a /lisp/tab-bar.el
parente4a62f8662b01ad1700565149ba7acbb67a2681a (diff)
downloademacs-3dcf06bfa035c3caaeac5ce5c585dbfc07f31331.tar.gz
* lisp/tab-bar.el: Add missing arg.
* lisp/tab-bar.el (tab-bar-list-next-line) (tab-bar-list-prev-line): Add missing interactive spec for prefix arg. * lisp/mouse.el (mouse-buffer-menu-mode-groups): Add "Git" regexp to match "Git-Region-History" mode name for "Version Control" group.
Diffstat (limited to 'lisp/tab-bar.el')
-rw-r--r--lisp/tab-bar.el4
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/tab-bar.el b/lisp/tab-bar.el
index 95835862ff8..69a26c515ec 100644
--- a/lisp/tab-bar.el
+++ b/lisp/tab-bar.el
@@ -1151,13 +1151,13 @@ Letters do not insert themselves; instead, they are commands.
nil))))
(defun tab-bar-list-next-line (&optional arg)
- (interactive)
+ (interactive "p")
(forward-line arg)
(beginning-of-line)
(move-to-column tab-bar-list-column))
(defun tab-bar-list-prev-line (&optional arg)
- (interactive)
+ (interactive "p")
(forward-line (- arg))
(beginning-of-line)
(move-to-column tab-bar-list-column))