aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--lisp/tab-line.el4
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/tab-line.el b/lisp/tab-line.el
index 0f701842dfa..c98b1cfce61 100644
--- a/lisp/tab-line.el
+++ b/lisp/tab-line.el
@@ -482,10 +482,10 @@ the selected tab visible."
482(defun tab-line-auto-hscroll (strings hscroll) 482(defun tab-line-auto-hscroll (strings hscroll)
483 (with-temp-buffer 483 (with-temp-buffer
484 (let ((truncate-partial-width-windows nil) 484 (let ((truncate-partial-width-windows nil)
485 (truncate-lines nil)
486 (inhibit-modification-hooks t) 485 (inhibit-modification-hooks t)
487 (buffer-undo-list t)
488 show-arrows) 486 show-arrows)
487 (setq truncate-lines nil
488 buffer-undo-list t)
489 (apply 'insert strings) 489 (apply 'insert strings)
490 (goto-char (point-min)) 490 (goto-char (point-min))
491 (add-face-text-property (point-min) (point-max) 'tab-line) 491 (add-face-text-property (point-min) (point-max) 'tab-line)