git.y1.nz

mtm

Ncurses-based terminal multiplexer
download: https://git.y1.nz/archives/mtm.tar.gz
Files | Log | Refs

commit ac571de393bcfe51fced4228c86321bde6fa3733
parent 1714ee4295b890c6864a7561a694860cda80eab0
Author: Rob King <jking@deadpixi.com>
Date:   Mon, 10 Jul 2017 10:06:24 -0500

Style fix.

Diffstat:
Mvtparser.c2+-
Mvtparser.h4++--
2 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/vtparser.c b/vtparser.c @@ -110,7 +110,7 @@ vtparser_init(VTPARSER *v, void *p) } VTCALLBACK -vtparser_onevent(VTPARSER *vp, vtparser_event_t t, wchar_t w, VTCALLBACK cb) +vtparser_onevent(VTPARSER *vp, VtEvent t, wchar_t w, VTCALLBACK cb) { VTCALLBACK o = NULL; if (w < MAXCALLBACK) switch (t){ diff --git a/vtparser.h b/vtparser.h @@ -66,14 +66,14 @@ typedef enum{ VTPARSER_CSI, VTPARSER_OSC, VTPARSER_PRINT -} vtparser_event_t; +} VtEvent; /**** FUNCTIONS */ bool vtparser_init(VTPARSER *, void *p); VTCALLBACK -vtparser_onevent(VTPARSER *vp, vtparser_event_t t, wchar_t w, VTCALLBACK cb); +vtparser_onevent(VTPARSER *vp, VtEvent t, wchar_t w, VTCALLBACK cb); void vtparser_write(VTPARSER *vp, const char *s, size_t n);

This webpage is intended to be an accessible preview of this repository. To get a fuller picture, clone it and use the git CLI.