aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJuri Linkov2019-11-17 00:19:42 +0200
committerJuri Linkov2019-11-17 00:19:42 +0200
commit3dcf06bfa035c3caaeac5ce5c585dbfc07f31331 (patch)
tree33e07a487f69ef7f987df6f1cd5383d650b8aa4a
parente4a62f8662b01ad1700565149ba7acbb67a2681a (diff)
downloademacs-3dcf06bfa035c3caaeac5ce5c585dbfc07f31331.tar.gz
emacs-3dcf06bfa035c3caaeac5ce5c585dbfc07f31331.zip
* 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.
-rw-r--r--lisp/mouse.el2
-rw-r--r--lisp/tab-bar.el4
2 files changed, 3 insertions, 3 deletions
diff --git a/lisp/mouse.el b/lisp/mouse.el
index 238852ffdc8..c91760a7348 100644
--- a/lisp/mouse.el
+++ b/lisp/mouse.el
@@ -1986,7 +1986,7 @@ a large number if you prefer a mixed multitude. The default is 4."
1986 ("Text" . "Text") 1986 ("Text" . "Text")
1987 ("Outline" . "Text") 1987 ("Outline" . "Text")
1988 ("\\(HT\\|SG\\|X\\|XHT\\)ML" . "SGML") 1988 ("\\(HT\\|SG\\|X\\|XHT\\)ML" . "SGML")
1989 ("log\\|diff\\|vc\\|cvs\\|Annotate" . "Version Control") ; "Change Management"? 1989 ("log\\|diff\\|vc\\|cvs\\|Git\\|Annotate" . "Version Control")
1990 ("Threads\\|Memory\\|Disassembly\\|Breakpoints\\|Frames\\|Locals\\|Registers\\|Inferior I/O\\|Debugger" 1990 ("Threads\\|Memory\\|Disassembly\\|Breakpoints\\|Frames\\|Locals\\|Registers\\|Inferior I/O\\|Debugger"
1991 . "GDB") 1991 . "GDB")
1992 ("Lisp" . "Lisp"))) 1992 ("Lisp" . "Lisp")))
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.
1151 nil)))) 1151 nil))))
1152 1152
1153(defun tab-bar-list-next-line (&optional arg) 1153(defun tab-bar-list-next-line (&optional arg)
1154 (interactive) 1154 (interactive "p")
1155 (forward-line arg) 1155 (forward-line arg)
1156 (beginning-of-line) 1156 (beginning-of-line)
1157 (move-to-column tab-bar-list-column)) 1157 (move-to-column tab-bar-list-column))
1158 1158
1159(defun tab-bar-list-prev-line (&optional arg) 1159(defun tab-bar-list-prev-line (&optional arg)
1160 (interactive) 1160 (interactive "p")
1161 (forward-line (- arg)) 1161 (forward-line (- arg))
1162 (beginning-of-line) 1162 (beginning-of-line)
1163 (move-to-column tab-bar-list-column)) 1163 (move-to-column tab-bar-list-column))