GNU bug report logs -
#68374
min-width is not correctly treated by buffer-text-pixel-size
Previous Next
Reported by: JD Smith <jdtsmith <at> gmail.com>
Date: Wed, 10 Jan 2024 22:24:01 UTC
Severity: normal
Done: Eli Zaretskii <eliz <at> gnu.org>
Bug is archived. No further changes may be made.
Full log
View this message in rfc822 format
[Message part 1 (text/plain, inline)]
Your message dated Sun, 11 Feb 2024 15:22:57 +0200
with message-id <86o7cnrv7y.fsf <at> gnu.org>
and subject line Re: bug#68374: min-width is not correctly treated by buffer-text-pixel-size
has caused the debbugs.gnu.org bug report #68374,
regarding min-width is not correctly treated by buffer-text-pixel-size
to be marked as done.
(If you believe you have received this mail in error, please contact
help-debbugs <at> gnu.org.)
--
68374: https://debbugs.gnu.org/cgi/bugreport.cgi?bug=68374
GNU Bug Tracking System
Contact help-debbugs <at> gnu.org with problems
[Message part 2 (message/rfc822, inline)]
When the ‘display min-width property is used on characters in a buffer, window/buffer-text-pixel-size does not include this min-width padding in its calculation of the text's pixel width.
This can be seen by using a range of minimum character widths and noticing that the width is identical; see below. Other ‘display properties like space :width and space :align-to do seem to be correctly handled by pixel size calculations.
This is relevant because various elements on the mode-line use ‘display min-width, so performing pixel alignment on the mode-line text is impacted.
+++
(eval-when-compile 'cl-lib)
(cl-loop
for w from 0. to 100. by 20.
collect
(with-current-buffer (get-buffer-create "*pixel-sizes*")
(erase-buffer)
(insert ">>>" (propertize " " 'display `(min-width (,w))) "<<<")
(cons w (buffer-text-pixel-size))))
;; ((0 49 . 14) (20 49 . 14) (40 49 . 14) (60 49 . 14) (80 49 . 14) (100 49 . 14))
[Message part 3 (message/rfc822, inline)]
> From: JD Smith <jdtsmith <at> gmail.com>
> Date: Sun, 11 Feb 2024 07:20:21 -0500
> Cc: 68374 <at> debbugs.gnu.org
>
> I haven't noticed anything unusual in a couple weeks of use, so please do. Thanks.
Thanks, installed on master, and closing the bug.
This bug report was last modified 1 year and 101 days ago.
Previous Next
GNU bug tracking system
Copyright (C) 1999 Darren O. Benham,
1997,2003 nCipher Corporation Ltd,
1994-97 Ian Jackson.