Codespell fixes

This commit is contained in:
Daniel Eklöf 2023-10-03 14:11:55 +02:00
parent 883368572f
commit 58d967b2f3
No known key found for this signature in database
GPG key ID: 5BBD4992C116573F
9 changed files with 14 additions and 14 deletions

View file

@ -409,10 +409,10 @@
has terminated very early (for example, by trying to launch a has terminated very early (for example, by trying to launch a
non-existing shell/client). non-existing shell/client).
* Glitchy rendering when scrolling in the scrollback, on compositors * Glitchy rendering when scrolling in the scrollback, on compositors
that does not allow Wayland buffer re-use (e.g. KDE/plasma) that does not allow Wayland buffer reuse (e.g. KDE/plasma)
([#1173][1173]) ([#1173][1173])
* Scrollback search matches not being highlighted correctly, on * Scrollback search matches not being highlighted correctly, on
compositors that does not allow Wayland buffer re-use compositors that does not allow Wayland buffer reuse
(e.g. KDE/plasma). (e.g. KDE/plasma).
* Nanosecs "overflow" when calculating timeout value for * Nanosecs "overflow" when calculating timeout value for
`resize-delay-ms` option. `resize-delay-ms` option.
@ -2331,7 +2331,7 @@ means foot can be PGO:d in e.g. sandboxed build scripts. See
* Window title always being set to "foot" on reset. * Window title always being set to "foot" on reset.
* Terminfo entry `kb2` (center keypad key); it is now set to `\EOu` * Terminfo entry `kb2` (center keypad key); it is now set to `\EOu`
(which is what foot emits) instead of the incorrect value `\EOE`. (which is what foot emits) instead of the incorrect value `\EOE`.
* Palette re-use in sixel images. Previously, the palette was reset * Palette reuse in sixel images. Previously, the palette was reset
after each image. after each image.
* Do not auto-resize a sixel image for which the client has specified * Do not auto-resize a sixel image for which the client has specified
a size. This fixes an issue where an image would incorrectly a size. This fixes an issue where an image would incorrectly

View file

@ -169,7 +169,7 @@ under a different name. Setting this changes the default value of
If you want foot to use the terminfo files from ncurses, but still If you want foot to use the terminfo files from ncurses, but still
package foot's own terminfo files under a different name, you can use package foot's own terminfo files under a different name, you can use
the `-Dterminfo-base-name` option. Many distributions use the name the `-Dterminfo-base-name` option. Many distributions use the name
`foot-extra`, and thus it might be a good idea to re-use that: `foot-extra`, and thus it might be a good idea to reuse that:
```sh ```sh
meson ... -Ddefault-terminfo=foot -Dterminfo-base-name=foot-extra meson ... -Ddefault-terminfo=foot -Dterminfo-base-name=foot-extra

View file

@ -149,7 +149,7 @@ int
main(int argc, char *const *argv) main(int argc, char *const *argv)
{ {
/* Custom exit code, to enable users to differentiate between foot /* Custom exit code, to enable users to differentiate between foot
* itself failing, and the client application failiing */ * itself failing, and the client application failing */
static const int foot_exit_failure = -36; static const int foot_exit_failure = -36;
int ret = foot_exit_failure; int ret = foot_exit_failure;

4
grid.c
View file

@ -584,7 +584,7 @@ _line_wrap(struct grid *old_grid, struct row **new_grid, struct row *row,
new_row = grid_row_alloc(col_count, false); new_row = grid_row_alloc(col_count, false);
new_grid[*row_idx] = new_row; new_grid[*row_idx] = new_row;
} else { } else {
/* Scrollback is full, need to re-use a row */ /* Scrollback is full, need to reuse a row */
grid_row_reset_extra(new_row); grid_row_reset_extra(new_row);
new_row->linebreak = false; new_row->linebreak = false;
new_row->prompt_marker = false; new_row->prompt_marker = false;
@ -597,7 +597,7 @@ _line_wrap(struct grid *old_grid, struct row **new_grid, struct row *row,
} }
/* /*
* TODO: detect if the re-used row is covered by the * TODO: detect if the reused row is covered by the
* selection. Of so, cancel the selection. The problem: we * selection. Of so, cancel the selection. The problem: we
* dont know if weve translated the selection coordinates * dont know if weve translated the selection coordinates
* yet. * yet.

2
main.c
View file

@ -176,7 +176,7 @@ int
main(int argc, char *const *argv) main(int argc, char *const *argv)
{ {
/* Custom exit code, to enable users to differentiate between foot /* Custom exit code, to enable users to differentiate between foot
* itself failing, and the client application failiing */ * itself failing, and the client application failing */
static const int foot_exit_failure = -26; static const int foot_exit_failure = -26;
int ret = foot_exit_failure; int ret = foot_exit_failure;

View file

@ -1614,7 +1614,7 @@ render_overlay(struct terminal *term)
buf->age == 0; buf->age == 0;
if (!buffer_reuse) { if (!buffer_reuse) {
/* Cant re-use last frames damage - set to full window, /* Cant reuse last frames damage - set to full window,
* to ensure *everything* is updated */ * to ensure *everything* is updated */
pixman_region32_init_rect( pixman_region32_init_rect(
&old_see_through, 0, 0, buf->width, buf->height); &old_see_through, 0, 0, buf->width, buf->height);
@ -4026,7 +4026,7 @@ maybe_resize(struct terminal *term, int width, int height, bool force)
/* /*
* Since text reflow is slow, dont do it *while* resizing. Only * Since text reflow is slow, dont do it *while* resizing. Only
* do it when done, or after pausing the resize for sufficiently * do it when done, or after pausing the resize for sufficiently
* long. We re-use the TIOCSWINSZ timer to handle this. See * long. We reuse the TIOCSWINSZ timer to handle this. See
* send_dimensions_to_client() and fdm_tiocswinsz(). * send_dimensions_to_client() and fdm_tiocswinsz().
* *
* To be able to do the final reflow correctly, we need a copy of * To be able to do the final reflow correctly, we need a copy of

2
shm.c
View file

@ -555,7 +555,7 @@ shm_get_buffer(struct buffer_chain *chain, int width, int height)
cached = buf; cached = buf;
else { else {
/* We have multiple buffers eligible for /* We have multiple buffers eligible for
* re-use. Pick the youngest one, and mark the * reuse. Pick the youngest one, and mark the
* other one for purging */ * other one for purging */
if (buf->public.age < cached->public.age) { if (buf->public.age < cached->public.age) {
shm_unref(&cached->public); shm_unref(&cached->public);

View file

@ -2675,7 +2675,7 @@ term_scroll_partial(struct terminal *term, struct scroll_region region, int rows
/* /*
* Selection is (partly) inside either the top or bottom * Selection is (partly) inside either the top or bottom
* scrolling regions, or on (at least one) of the lines * scrolling regions, or on (at least one) of the lines
* scrolled in (i.e. re-used lines). * scrolled in (i.e. reused lines).
*/ */
if (selection_on_top_region(term, region) || if (selection_on_top_region(term, region) ||
selection_on_bottom_region(term, region)) selection_on_bottom_region(term, region))
@ -2749,7 +2749,7 @@ term_scroll_reverse_partial(struct terminal *term,
/* /*
* Selection is (partly) inside either the top or bottom * Selection is (partly) inside either the top or bottom
* scrolling regions, or on (at least one) of the lines * scrolling regions, or on (at least one) of the lines
* scrolled in (i.e. re-used lines). * scrolled in (i.e. reused lines).
*/ */
if (selection_on_top_region(term, region) || if (selection_on_top_region(term, region) ||
selection_on_bottom_region(term, region)) selection_on_bottom_region(term, region))

View file

@ -697,7 +697,7 @@ urls_assign_key_combos(const struct config *conf, url_list_t *urls)
/* /*
* Scan previous URLs, and check if *this* URL matches any of * Scan previous URLs, and check if *this* URL matches any of
* them; if so, re-use the *same* key combo. * them; if so, reuse the *same* key combo.
*/ */
bool url_already_seen = false; bool url_already_seen = false;
tll_foreach(*urls, it2) { tll_foreach(*urls, it2) {