Merge branch 'xassert-performance-regression-2'

This commit is contained in:
Daniel Eklöf 2021-02-07 16:32:03 +01:00
commit 8f4a8cd8ce
No known key found for this signature in database
GPG key ID: 5BBD4992C116573F
2 changed files with 1 additions and 7 deletions

6
ime.c
View file

@ -25,11 +25,7 @@ enter(void *data, struct zwp_text_input_v3 *zwp_text_input_v3,
LOG_DBG("enter: seat=%s", seat->name);
/* The main grid is the *only* input-receiving surface we have */
/* TODO: can we receive text_input::enter() _before_ keyboard_enter()? */
struct terminal UNUSED *term = seat->kbd_focus;
xassert(term != NULL);
xassert(term_surface_kind(term, surface) == TERM_SURF_GRID);
xassert(seat->kbd_focus != NULL);
ime_enable(seat);
}

2
vt.c
View file

@ -238,8 +238,6 @@ action_print(struct terminal *term, uint8_t c)
L'', L'', L'', L'π', L'', L'£', L'·', /* x - ~ */
};
xassert(wcwidth(c) == 1);
if (unlikely(term->charsets.set[term->charsets.selected] == CHARSET_GRAPHIC) &&
c >= 0x60 && c <= 0x7e)
{