summaryrefslogtreecommitdiff
path: root/lisp/tab-bar.el
diff options
context:
space:
mode:
authorStefan Kangas <stefan@marxist.se>2021-09-24 14:46:56 +0200
committerStefan Kangas <stefan@marxist.se>2021-09-26 13:23:57 +0200
commitc78e16962e63895d340f80cf245fad568a7da770 (patch)
treefd8912ae6e025f7c20ecce2eea1708e092a5093f /lisp/tab-bar.el
parentf4ea15907aeb020b80d021a8d6bf212bcde08ab9 (diff)
downloademacs-c78e16962e63895d340f80cf245fad568a7da770.tar.gz
; Adjust overly long docstrings to fit 80 characters
Diffstat (limited to 'lisp/tab-bar.el')
-rw-r--r--lisp/tab-bar.el7
1 files changed, 4 insertions, 3 deletions
diff --git a/lisp/tab-bar.el b/lisp/tab-bar.el
index ceacd85971d..abf0e814c41 100644
--- a/lisp/tab-bar.el
+++ b/lisp/tab-bar.el
@@ -1007,7 +1007,8 @@ on the tab bar instead."
When this command is bound to a numeric key (with a prefix or modifier key
using `tab-bar-select-tab-modifiers'), calling it without an argument
will translate its bound numeric key to the numeric argument.
-TAB-NUMBER counts from 1. Negative TAB-NUMBER counts tabs from the end of the tab bar."
+TAB-NUMBER counts from 1. Negative TAB-NUMBER counts tabs from the end of
+the tab bar."
(interactive "P")
(unless (integerp tab-number)
(let ((key (event-basic-type last-command-event)))
@@ -1908,7 +1909,7 @@ Letters do not insert themselves; instead, they are commands.
(move-to-column tab-switcher-column))
(defun tab-switcher-unmark (&optional backup)
- "Cancel all requested operations on window configuration on this line and move down.
+ "Cancel requested operations on window configuration on this line and move down.
Optional prefix arg means move up."
(interactive "P")
(beginning-of-line)
@@ -1920,7 +1921,7 @@ Optional prefix arg means move up."
(move-to-column tab-switcher-column))
(defun tab-switcher-backup-unmark ()
- "Move up and cancel all requested operations on window configuration on line above."
+ "Move up one line and cancel requested operations on window configuration there."
(interactive)
(forward-line -1)
(tab-switcher-unmark)