this one is trickier

This commit is contained in:
tg 2011-04-22 12:16:38 +00:00
parent 6c0255ecb2
commit d72669c66b
1 changed files with 5 additions and 5 deletions

10
edit.c
View File

@ -25,7 +25,7 @@
#include "sh.h" #include "sh.h"
__RCSID("$MirOS: src/bin/mksh/edit.c,v 1.210 2011/04/22 12:15:38 tg Exp $"); __RCSID("$MirOS: src/bin/mksh/edit.c,v 1.211 2011/04/22 12:16:38 tg Exp $");
/* /*
* in later versions we might use libtermcap for this, but since external * in later versions we might use libtermcap for this, but since external
@ -3420,10 +3420,10 @@ struct macro_state {
}; };
static struct macro_state macro; static struct macro_state macro;
enum expand_mode { /* last input was expanded */
NONE, EXPAND, COMPLETE, PRINT static enum expand_mode {
}; NONE = 0, EXPAND, COMPLETE, PRINT
static enum expand_mode expanded = NONE; /* last input was expanded */ } expanded;
static int static int
x_vi(char *buf, size_t len) x_vi(char *buf, size_t len)