]> git.eshelyaron.com Git - emacs.git/commitdiff
Fix string-pixel-width with global setting of display-line-numbers
authorDmitry Gutov <dmitry@gutov.dev>
Sat, 18 Nov 2023 16:35:18 +0000 (18:35 +0200)
committerDmitry Gutov <dmitry@gutov.dev>
Sat, 18 Nov 2023 16:35:18 +0000 (18:35 +0200)
* lisp/emacs-lisp/subr-x.el (string-pixel-width):
Instead of checking for display-line-numbers-mode, set the
display-line-numbers variable to nil (bug#67248).

lisp/emacs-lisp/subr-x.el

index b164071763b4868f7de517c34ce0bdaec4c4647c..88ac59fd16886c861f14aa7f437f9397dd2ac6e1 100644 (file)
@@ -322,10 +322,9 @@ as the new values of the bound variables in the recursive invocation."
     ;; Keeping a work buffer around is more efficient than creating a
     ;; new temporary buffer.
     (with-current-buffer (get-buffer-create " *string-pixel-width*")
-      ;; If `display-line-numbers-mode' is enabled in internal
-      ;; buffers, it breaks width calculation, so disable it (bug#59311)
-      (when (bound-and-true-p display-line-numbers-mode)
-        (display-line-numbers-mode -1))
+      ;; If `display-line-numbers' is enabled in internal buffers
+      ;; (e.g. globally), it breaks width calculation (bug#59311)
+      (setq-local display-line-numbers nil)
       (delete-region (point-min) (point-max))
       ;; Disable line-prefix and wrap-prefix, for the same reason.
       (setq line-prefix nil