summaryrefslogtreecommitdiff
path: root/lisp/textmodes/pixel-fill.el
Commit message (Collapse)AuthorAgeFilesLines
* Avoid signaling errors from 'pixel-fill-region'Eli Zaretskii2024-02-031-33/+35
| | | | | | | | * lisp/textmodes/pixel-fill.el (pixel-fill-region): Make sure the selected window displays the current buffer. This is important when this function is called inside 'with-current-buffer' or similar forms which temporarily change the buffer displayed in the selected window. (Bug#67791)
* ; Add 2024 to copyright yearsPo Lu2024-01-021-1/+1
|
* ; Add 2023 to copyright years.Eli Zaretskii2023-01-011-1/+1
|
* ; Fix typos and wording in a doc stringEli Zaretskii2022-05-081-2/+2
| | | | | * lisp/textmodes/pixel-fill.el (pixel-fill-width): Fix doc string. (Bug#55318)
* ; Add 2022 to copyright years.Eli Zaretskii2022-01-011-1/+1
|
* Fix pixel-fill--fill-line infloop for certain unbreakable linesLars Ingebrigtsen2021-12-041-10/+9
| | | | | * lisp/textmodes/pixel-fill.el (pixel-fill--fill-line): Fix infloops for certain line widths (bug#52271).
* Fix fencepost error in pixel-fill--fill-lineLars Ingebrigtsen2021-12-011-4/+5
| | | | | * lisp/textmodes/pixel-fill.el (pixel-fill--fill-line): Don't add a newline (and continuation) if we're at the end of the line.
* Make pixel-fill-region handle space regions betterLars Ingebrigtsen2021-12-011-4/+11
| | | | | * lisp/textmodes/pixel-fill.el (pixel-fill-region): Preserve the face on the replacement spaces.
* Preserve newlines at the end of pixel-fill-regionLars Ingebrigtsen2021-12-011-4/+12
| | | | | * lisp/textmodes/pixel-fill.el (pixel-fill-region): Preserve newlines at the end.
* Improve documentation of pixel-fillEli Zaretskii2021-11-301-2/+3
| | | | | | | * doc/lispref/text.texi (Filling): Describe the arguments of 'pixel-fill-region'. Add index entry. * lisp/textmodes/pixel-fill.el (pixel-fill-region): Doc fix.
* Document pixel-fill-regionLars Ingebrigtsen2021-11-301-0/+22
| | | | | | | * doc/lispref/text.texi (Filling): Document pixel-fill-region. * lisp/textmodes/pixel-fill.el (pixel-fill-width): Add new helper function.
* Add new package pixel-fill.elLars Ingebrigtsen2021-11-301-0/+202
* lisp/net/shr.el (shr-char-breakable-p, shr-char-nospace-p) (shr-char-kinsoku-bol-p, shr-char-kinsoku-eol-p) (shr-find-fill-point): Moved to pixel-fill.el and renamed. (shr-pixel-region): Made obsolete. (shr-fill-line): Use pixel-fill-region. * lisp/textmodes/pixel-fill.el: New package.