diff options
author | Todd C. Miller <millert@cvs.openbsd.org> | 1999-07-15 20:39:41 +0000 |
---|---|---|
committer | Todd C. Miller <millert@cvs.openbsd.org> | 1999-07-15 20:39:41 +0000 |
commit | 485ab950773954738670e276448fbe691810e065 (patch) | |
tree | 3c7e49fda9750ce5e71f854dcb694a2f624a35ec /bin/ksh/sh.h | |
parent | 8881f080a67f5829508cb4d4c300c5e8e87d5a0a (diff) |
o Set default line edit mode to emacs (VISUAL/EDITOR or user can override)
o Spell environment correctly
Diffstat (limited to 'bin/ksh/sh.h')
-rw-r--r-- | bin/ksh/sh.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/bin/ksh/sh.h b/bin/ksh/sh.h index 2d61648ae7a..586f4d6ac26 100644 --- a/bin/ksh/sh.h +++ b/bin/ksh/sh.h @@ -1,4 +1,4 @@ -/* $OpenBSD: sh.h,v 1.9 1999/06/15 01:18:36 millert Exp $ */ +/* $OpenBSD: sh.h,v 1.10 1999/07/15 20:39:40 millert Exp $ */ /* * Public Domain Bourne/Korn shell @@ -410,18 +410,18 @@ EXTERN Area aperm; /* permanent object space */ * parsing & execution environment */ EXTERN struct env { - short type; /* enviroment type - see below */ + short type; /* environment type - see below */ short flags; /* EF_* */ Area area; /* temporary allocation area */ struct block *loc; /* local variables and functions */ short *savefd; /* original redirected fd's */ - struct env *oenv; /* link to previous enviroment */ + struct env *oenv; /* link to previous environment */ ksh_jmp_buf jbuf; /* long jump back to env creator */ struct temp *temps; /* temp files */ } *e; /* struct env.type values */ -#define E_NONE 0 /* dummy enviroment */ +#define E_NONE 0 /* dummy environment */ #define E_PARSE 1 /* parsing command # */ #define E_FUNC 2 /* executing function # */ #define E_INCL 3 /* including a file via . # */ |