Avoid the underscore in struct _TermKey
This commit is contained in:
parent
d3e56776b7
commit
85d44442e9
|
@ -30,7 +30,7 @@ struct TermKeyDriverNode {
|
||||||
struct TermKeyDriverNode *next;
|
struct TermKeyDriverNode *next;
|
||||||
};
|
};
|
||||||
|
|
||||||
struct _TermKey {
|
struct TermKey {
|
||||||
int fd;
|
int fd;
|
||||||
int flags;
|
int flags;
|
||||||
int canonflags;
|
int canonflags;
|
||||||
|
|
|
@ -136,7 +136,7 @@ typedef struct {
|
||||||
char utf8[7];
|
char utf8[7];
|
||||||
} TermKeyKey;
|
} TermKeyKey;
|
||||||
|
|
||||||
typedef struct _TermKey TermKey;
|
typedef struct TermKey TermKey;
|
||||||
|
|
||||||
enum {
|
enum {
|
||||||
TERMKEY_FLAG_NOINTERPRET = 1 << 0, /* Do not interpret C0//DEL codes if possible */
|
TERMKEY_FLAG_NOINTERPRET = 1 << 0, /* Do not interpret C0//DEL codes if possible */
|
||||||
|
|
Loading…
Reference in New Issue