diff options
| author | Nathan Reiner <nathan@nathanreiner.xyz> | 2023-06-23 09:39:46 +0200 |
|---|---|---|
| committer | Nathan Reiner <nathan@nathanreiner.xyz> | 2023-06-23 09:40:39 +0200 |
| commit | fc72ea11b7c3703fab19ba6ae6fd358851a8f467 (patch) | |
| tree | 03089560de613b6c3252b53b3546b0fad41979f5 /term.c | |
| parent | 20e95d917417e7b86eb602362e4c6d3bb17a0dcb (diff) | |
fix settitle crash
Diffstat (limited to 'term.c')
| -rw-r--r-- | term.c | 8 |
1 files changed, 0 insertions, 8 deletions
@@ -28,14 +28,6 @@ #include <libutil.h> #endif -/* Arbitrary sizes */ -#define UTF_INVALID 0xFFFD -#define UTF_SIZ 4 -#define ESC_BUF_SIZ (128*UTF_SIZ) -#define ESC_ARG_SIZ 16 -#define STR_BUF_SIZ ESC_BUF_SIZ -#define STR_ARG_SIZ ESC_ARG_SIZ - /* macros */ #define IS_SET(flag) ((term.mode & (flag)) != 0) #define ISCONTROLC0(c) (BETWEEN(c, 0, 0x1f) || (c) == 0x7f) |