Home | History | Annotate | Download | only in ksh

Lines Matching defs:edstate

27 struct edstate {
68 static int print_expansions ARGS((struct edstate *, int));
150 static struct edstate *save_edstate ARGS((struct edstate *old));
151 static void restore_edstate ARGS((struct edstate *old, struct edstate *new));
152 static void free_edstate ARGS((struct edstate *old));
154 static struct edstate ebuf;
155 static struct edstate undobuf = { 0, undocbuf, CMDLEN, 0, 0 };
157 static struct edstate *es; /* current editor state */
158 static struct edstate *undo;
706 struct edstate *t;
1388 /* return a new edstate */
1389 static struct edstate *
1391 struct edstate *old;
1393 struct edstate *new;
1395 new = (struct edstate *)alloc(sizeof(struct edstate), APERM);
1407 struct edstate *old, *new;
1418 struct edstate *old;
1942 static struct edstate *buf;
1998 static struct edstate *buf;
2104 struct edstate *ex;