From: João Guerra Date: Tue, 25 Oct 2022 18:48:37 +0000 (+0300) Subject: * lisp/tab-line.el (tab-line-auto-hscroll): Set word-wrap to nil (bug#58740). X-Git-Tag: emacs-29.0.90~1616^2~466 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=e5cb66c046be440ca63fb384ea93f450aa4f958e;p=emacs.git * lisp/tab-line.el (tab-line-auto-hscroll): Set word-wrap to nil (bug#58740). Copyright-paperwork-exempt: yes --- 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))