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 _TermKey {
|
||||
struct TermKey {
|
||||
int fd;
|
||||
int flags;
|
||||
int canonflags;
|
||||
|
|
|
@ -136,7 +136,7 @@ typedef struct {
|
|||
char utf8[7];
|
||||
} TermKeyKey;
|
||||
|
||||
typedef struct _TermKey TermKey;
|
||||
typedef struct TermKey TermKey;
|
||||
|
||||
enum {
|
||||
TERMKEY_FLAG_NOINTERPRET = 1 << 0, /* Do not interpret C0//DEL codes if possible */
|
||||
|
|
Loading…
Reference in New Issue