From e5cb66c046be440ca63fb384ea93f450aa4f958e Mon Sep 17 00:00:00 2001 From: =?utf8?q?Jo=C3=A3o=20Guerra?= Date: Tue, 25 Oct 2022 21:48:37 +0300 Subject: [PATCH] * lisp/tab-line.el (tab-line-auto-hscroll): Set word-wrap to nil (bug#58740). Copyright-paperwork-exempt: yes --- lisp/tab-line.el | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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." (let ((truncate-partial-width-windows nil) (inhibit-modification-hooks t) show-arrows) - (setq truncate-lines nil) + (setq truncate-lines nil + word-wrap nil) (erase-buffer) (apply 'insert strings) (goto-char (point-min)) -- 2.39.5