mirror of
https://codeberg.org/dnkl/foot.git
synced 2026-02-04 04:06:06 -05:00
dcs: bsu/esu: call render_{disable,enable}_refresh()
This commit is contained in:
parent
b2935e2b89
commit
7b27fa857f
1 changed files with 8 additions and 6 deletions
14
dcs.c
14
dcs.c
|
|
@ -3,22 +3,24 @@
|
|||
#define LOG_MODULE "dcs"
|
||||
#define LOG_ENABLE_DBG 0
|
||||
#include "log.h"
|
||||
#include "render.h"
|
||||
#include "vt.h"
|
||||
|
||||
static void
|
||||
bsu(struct terminal *term)
|
||||
{
|
||||
LOG_WARN("unimplemented: BSU - Begin Synchronized Update (params: %.*s)",
|
||||
(int)term->vt.dcs.idx, term->vt.dcs.data);
|
||||
abort();
|
||||
LOG_DBG("BSU - Begin Synchronized Update (params: %.*s)",
|
||||
(int)term->vt.dcs.idx, term->vt.dcs.data);
|
||||
|
||||
render_disable_refresh(term);
|
||||
}
|
||||
|
||||
static void
|
||||
esu(struct terminal *term)
|
||||
{
|
||||
LOG_WARN("unimplemented: ESU - Begin Synchronized Update (params: %.*s)",
|
||||
(int)term->vt.dcs.idx, term->vt.dcs.data);
|
||||
abort();
|
||||
LOG_DBG("ESU - Begin Synchronized Update (params: %.*s)",
|
||||
(int)term->vt.dcs.idx, term->vt.dcs.data);
|
||||
render_enable_refresh(term);
|
||||
}
|
||||
|
||||
void
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue