aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--editors/vi.c12
1 files changed, 8 insertions, 4 deletions
diff --git a/editors/vi.c b/editors/vi.c
index e1cd7a482..f7d3ef678 100644
--- a/editors/vi.c
+++ b/editors/vi.c
@@ -209,8 +209,12 @@ struct globals {
209 char *initial_cmds[3]; // currently 2 entries, NULL terminated 209 char *initial_cmds[3]; // currently 2 entries, NULL terminated
210#endif 210#endif
211 // Should be just enough to hold a key sequence, 211 // Should be just enough to hold a key sequence,
212 // but CRASME mode uses it as generated command buffer too 212 // but CRASHME mode uses it as generated command buffer too
213 char readbuffer[8]; 213#if ENABLE_FEATURE_VI_CRASHME
214 char readbuffer[128];
215#else
216 char readbuffer[8];
217#endif
214#define STATUS_BUFFER_LEN 200 218#define STATUS_BUFFER_LEN 200
215 char status_buffer[STATUS_BUFFER_LEN]; // messages to the user 219 char status_buffer[STATUS_BUFFER_LEN]; // messages to the user
216#if ENABLE_FEATURE_VI_DOT_CMD 220#if ENABLE_FEATURE_VI_DOT_CMD
@@ -2283,8 +2287,8 @@ static char readit(void) // read (maybe cursor) key from stdin
2283 struct pollfd pfd; 2287 struct pollfd pfd;
2284 pfd.fd = 0; 2288 pfd.fd = 0;
2285 pfd.events = POLLIN; 2289 pfd.events = POLLIN;
2286 // TODO: what is a good timeout here? why? 2290 // Rob needed 300ms timeout on qemu
2287 if (safe_poll(&pfd, 1, /*timeout:*/ 0)) { 2291 if (safe_poll(&pfd, 1, /*timeout:*/ 300)) {
2288 if (safe_read(0, readbuffer + n, 1) <= 0) 2292 if (safe_read(0, readbuffer + n, 1) <= 0)
2289 goto error; 2293 goto error;
2290 n++; 2294 n++;