> Cc: da_...@orange.fr > From: Konstantin Kharlamov <hi-an...@yandex.ru> > Date: Tue, 03 Sep 2024 17:46:09 +0300 > > CCing the commit author. > > Sorry for using external plugin, but master has two separate unrelated > critical regressions (the other one is going via link in *Help* buffer > and getting Emacs locked up with 100% CPU and quickly increasing memory > usage, which complicates reducing the steps), and since there's a clear > commit that introduced the problem I decided to report it as is. > > # Steps to reproduce > > 1. Make sure you're in the Emacs repository and `./build/src/emacs` is > the built binary > 2. Execute `git clone --depth 1 https://github.com/emacs-evil/evil > /tmp/evil` > 3. Execute `PATH="$(pwd)/build/src/:$PATH" make -C /tmp/evil emacs` > (Emacs with Evil loaded will start) > 4. Press `n` to refuse running tests > 5. Turn line numbers on by evaluating: (setq-default display-line- > numbers 'visual) > 6. Press `df`
What does "df" do? Does it somehow end up calling string-pixel-width? IOW, please show how string-pixel-width is related to the above. > ## Expected > > Line numbers are still shown > > ## Actual > > Line numbers disappear > > # Additional information > > The commit that introduced the problem: > > commit dffdbc1f1fd6569c518e2e3b5e771a54e9e9483f (HEAD) > Author: David Ponce <da_...@orange.fr> > Date: Thu Aug 22 16:56:11 2024 +0200 > > Use 'with-work-macro' in 'string-pixel-width' Does it help to replace (setq display-line-numbers nil with (setq-local display-line-numbers nil in string-pixel-width?