bug-gnu-emacs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

bug#59208: 29.0.50; tab-bar-auto-width plus display space cpu spin


From: Juri Linkov
Subject: bug#59208: 29.0.50; tab-bar-auto-width plus display space cpu spin
Date: Sat, 12 Nov 2022 20:33:15 +0200
User-agent: Gnus/5.13 (Gnus v5.13) Emacs/29.0.50 (x86_64-pc-linux-gnu)

> My tab-bar-tab-name-format-function causes 100% cpu spin as of
> ca3763af5c. Disabling tab-bar-auto-width fixes it.
>
> To repro: emacs -Q -l repro.el
>
> repro.el:
>
> (defun aj/tab-bar-tab-name-format (tab i)
>   (propertize
>    (propertize " " 'display '(space :width (8)))
>    'face (funcall tab-bar-tab-face-function tab)))
>
> (setq tab-bar-tab-name-format-function #'aj/tab-bar-tab-name-format)
>
> (tab-bar-mode)

Thanks for the bug report.  Since with
  (propertize " " 'display '(space :width (8)))
the tab width can't grow more than 8 pixels,
a possible fix would be on every iteration
that adds more spaces to the tab name
to check if the tab width remains the same.





reply via email to

[Prev in Thread] Current Thread [Next in Thread]