aboutsummaryrefslogtreecommitdiffstats
path: root/lisp
diff options
context:
space:
mode:
Diffstat (limited to 'lisp')
-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))