]> git.eshelyaron.com Git - emacs.git/commitdiff
* lisp/tab-bar.el: Add missing arg.
authorJuri Linkov <juri@linkov.net>
Sat, 16 Nov 2019 22:19:42 +0000 (00:19 +0200)
committerJuri Linkov <juri@linkov.net>
Sat, 16 Nov 2019 22:19:42 +0000 (00:19 +0200)
* 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.

lisp/mouse.el
lisp/tab-bar.el

index 238852ffdc862787c7025e792cfad5512d4d8ec2..c91760a73484c460b47baf2880c360ed7aa3a6c8 100644 (file)
@@ -1986,7 +1986,7 @@ a large number if you prefer a mixed multitude.  The default is 4."
     ("Text" . "Text")
     ("Outline" . "Text")
     ("\\(HT\\|SG\\|X\\|XHT\\)ML" . "SGML")
-    ("log\\|diff\\|vc\\|cvs\\|Annotate" . "Version Control") ; "Change Management"?
+    ("log\\|diff\\|vc\\|cvs\\|Git\\|Annotate" . "Version Control")
     ("Threads\\|Memory\\|Disassembly\\|Breakpoints\\|Frames\\|Locals\\|Registers\\|Inferior I/O\\|Debugger"
      . "GDB")
     ("Lisp" . "Lisp")))
index 95835862ff80b4fd3225e3c4465ccac125fdd323..69a26c515ec345e56f26bd70ede63da534d841ce 100644 (file)
@@ -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))