diff options
author | Bram Moolenaar <Bram@vim.org> | 2017-08-13 20:28:53 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2017-08-13 20:28:53 +0200 |
commit | 6b93b0e8388adc6c9bb50ce2c011d93d6cc41bc8 (patch) | |
tree | 4366a5776c3c1ceca8448d201cd78f996ef76653 | |
parent | 9f0139a2a869b0804e5b91a65e3d5952c9091879 (diff) | |
download | vim-git-6b93b0e8388adc6c9bb50ce2c011d93d6cc41bc8.tar.gz |
patch 8.0.0934: change to struts.h missing in patchv8.0.0934
Problem: Change to struts.h missing in patch.
Solution: Include adding ttyinfo_T.
-rw-r--r-- | src/structs.h | 8 | ||||
-rw-r--r-- | src/version.c | 2 |
2 files changed, 10 insertions, 0 deletions
diff --git a/src/structs.h b/src/structs.h index 91326f665..40dfd9595 100644 --- a/src/structs.h +++ b/src/structs.h @@ -1455,6 +1455,14 @@ struct partial_S dict_T *pt_dict; /* dict for "self" */ }; +/* Information returned by get_tty_info(). */ +typedef struct { + int backspace; /* what the Backspace key produces */ + int enter; /* what the Enter key produces */ + int interrupt; /* interrupt character */ + int nl_does_cr; /* TRUE when a NL is expanded to CR-NL on output */ +} ttyinfo_T; + /* Status of a job. Order matters! */ typedef enum { diff --git a/src/version.c b/src/version.c index ab8c3149f..a24b6715b 100644 --- a/src/version.c +++ b/src/version.c @@ -770,6 +770,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 934, +/**/ 933, /**/ 932, |