mirror of
https://codeberg.org/dnkl/foot.git
synced 2026-04-14 08:21:27 -04: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_MODULE "dcs"
|
||||||
#define LOG_ENABLE_DBG 0
|
#define LOG_ENABLE_DBG 0
|
||||||
#include "log.h"
|
#include "log.h"
|
||||||
|
#include "render.h"
|
||||||
#include "vt.h"
|
#include "vt.h"
|
||||||
|
|
||||||
static void
|
static void
|
||||||
bsu(struct terminal *term)
|
bsu(struct terminal *term)
|
||||||
{
|
{
|
||||||
LOG_WARN("unimplemented: BSU - Begin Synchronized Update (params: %.*s)",
|
LOG_DBG("BSU - Begin Synchronized Update (params: %.*s)",
|
||||||
(int)term->vt.dcs.idx, term->vt.dcs.data);
|
(int)term->vt.dcs.idx, term->vt.dcs.data);
|
||||||
abort();
|
|
||||||
|
render_disable_refresh(term);
|
||||||
}
|
}
|
||||||
|
|
||||||
static void
|
static void
|
||||||
esu(struct terminal *term)
|
esu(struct terminal *term)
|
||||||
{
|
{
|
||||||
LOG_WARN("unimplemented: ESU - Begin Synchronized Update (params: %.*s)",
|
LOG_DBG("ESU - Begin Synchronized Update (params: %.*s)",
|
||||||
(int)term->vt.dcs.idx, term->vt.dcs.data);
|
(int)term->vt.dcs.idx, term->vt.dcs.data);
|
||||||
abort();
|
render_enable_refresh(term);
|
||||||
}
|
}
|
||||||
|
|
||||||
void
|
void
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue