emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

master 3dcf06b: * lisp/tab-bar.el: Add missing arg.


From: Juri Linkov
Subject: master 3dcf06b: * lisp/tab-bar.el: Add missing arg.
Date: Sat, 16 Nov 2019 17:19:50 -0500 (EST)

branch: master
commit 3dcf06bfa035c3caaeac5ce5c585dbfc07f31331
Author: Juri Linkov <address@hidden>
Commit: Juri Linkov <address@hidden>

    * 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.
---
 lisp/mouse.el   | 2 +-
 lisp/tab-bar.el | 4 ++--
 2 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/lisp/mouse.el b/lisp/mouse.el
index 238852f..c91760a 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."
     ("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")))
diff --git a/lisp/tab-bar.el b/lisp/tab-bar.el
index 9583586..69a26c5 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))



reply via email to

[Prev in Thread] Current Thread [Next in Thread]