# HG changeset patch # User Christian Brabandt # Date 1502649006 -7200 # Node ID 4b2bbbf81628aa95a4498b30fd3ea122640c29e2 # Parent aed6348bdf2edb85c23aca4e2305bf6c2d88a0fb patch 8.0.0934: change to struts.h missing in patch commit https://github.com/vim/vim/commit/6b93b0e8388adc6c9bb50ce2c011d93d6cc41bc8 Author: Bram Moolenaar Date: Sun Aug 13 20:28:53 2017 +0200 patch 8.0.0934: change to struts.h missing in patch Problem: Change to struts.h missing in patch. Solution: Include adding ttyinfo_T. diff --git a/src/structs.h b/src/structs.h --- 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 --- 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,