diff options
author | 2020-06-05 09:32:15 +0000 | |
---|---|---|
committer | 2020-06-05 09:32:15 +0000 | |
commit | e636b826f6d3ca4537944fcf8711b326bda00277 (patch) | |
tree | a1b14ed231539f68aef30550718d32c64e0be324 /usr.bin/tmux/tmux.h | |
parent | Qemu does not like we load ofwboot on top of the bootblocks and as (diff) | |
download | wireguard-openbsd-e636b826f6d3ca4537944fcf8711b326bda00277.tar.xz wireguard-openbsd-e636b826f6d3ca4537944fcf8711b326bda00277.zip |
Fix various confusion about am vs xenl.
Diffstat (limited to 'usr.bin/tmux/tmux.h')
-rw-r--r-- | usr.bin/tmux/tmux.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.bin/tmux/tmux.h b/usr.bin/tmux/tmux.h index dbed18d3564..3aca4f312f0 100644 --- a/usr.bin/tmux/tmux.h +++ b/usr.bin/tmux/tmux.h @@ -1,4 +1,4 @@ -/* $OpenBSD: tmux.h,v 1.1063 2020/06/05 07:33:57 nicm Exp $ */ +/* $OpenBSD: tmux.h,v 1.1064 2020/06/05 09:32:15 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott <nicholas.marriott@gmail.com> @@ -257,6 +257,7 @@ enum { /* Termcap codes. */ enum tty_code_code { TTYC_ACSC, + TTYC_AM, TTYC_AX, TTYC_BCE, TTYC_BEL, @@ -477,7 +478,6 @@ enum tty_code_code { TTYC_TSL, TTYC_U8, TTYC_VPA, - TTYC_XENL, TTYC_XT }; @@ -1256,7 +1256,7 @@ struct tty_term { struct tty_code *codes; #define TERM_256COLOURS 0x1 -#define TERM_NOXENL 0x2 +#define TERM_NOAM 0x2 #define TERM_DECSLRM 0x4 #define TERM_DECFRA 0x8 #define TERM_RGBCOLOURS 0x10 |