aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJoão Guerra2022-10-25 21:48:37 +0300
committerJuri Linkov2022-10-25 21:49:39 +0300
commite5cb66c046be440ca63fb384ea93f450aa4f958e (patch)
tree05c9c87f5e385da8311594864c4b6cda8048785b
parent1b1ffe07897ebe06cf96ab423fad3cde9fd6c981 (diff)
downloademacs-e5cb66c046be440ca63fb384ea93f450aa4f958e.tar.gz
emacs-e5cb66c046be440ca63fb384ea93f450aa4f958e.zip
* lisp/tab-line.el (tab-line-auto-hscroll): Set word-wrap to nil (bug#58740).
Copyright-paperwork-exempt: yes
-rw-r--r--lisp/tab-line.el3
1 files changed, 2 insertions, 1 deletions
diff --git a/lisp/tab-line.el b/lisp/tab-line.el
index 94e8f29a95f..a4e95bbc755 100644
--- a/lisp/tab-line.el
+++ b/lisp/tab-line.el
@@ -620,7 +620,8 @@ the selected tab visible."
620 (let ((truncate-partial-width-windows nil) 620 (let ((truncate-partial-width-windows nil)
621 (inhibit-modification-hooks t) 621 (inhibit-modification-hooks t)
622 show-arrows) 622 show-arrows)
623 (setq truncate-lines nil) 623 (setq truncate-lines nil
624 word-wrap nil)
624 (erase-buffer) 625 (erase-buffer)
625 (apply 'insert strings) 626 (apply 'insert strings)
626 (goto-char (point-min)) 627 (goto-char (point-min))