Avoid the underscore in struct _TermKey

This commit is contained in:
Paul LeoNerd Evans 2012-03-26 18:30:04 +01:00
parent d3e56776b7
commit 85d44442e9
2 changed files with 2 additions and 2 deletions

View File

@ -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;

View File

@ -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 */