Skip to content

Commit

Permalink
[bot] "built_in_updates" Wed Sep 11 20:56:42 UTC 2024
Browse files Browse the repository at this point in the history
  • Loading branch information
SpacemacsBot committed Sep 11, 2024
1 parent 22bed46 commit ec37bed
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/libs/page-break-lines.el
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ its display table will be modified as necessary."
(/ (float (string-pixel-width (make-string 100 page-break-lines-char)))
(string-pixel-width (make-string 100 ?a)))
(char-width page-break-lines-char)))
(width (floor (window-max-chars-per-line) char-relative-width))
(width (floor (max 0 (window-max-chars-per-line)) char-relative-width))
(width (if page-break-lines-max-width
(min width page-break-lines-max-width)
width))
Expand Down

0 comments on commit ec37bed

Please sign in to comment.