Changeset 880 in kBuild for trunk/src/ash-messup/options.h
- Timestamp:
- Apr 21, 2007 7:47:39 AM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/ash-messup/options.h
r879 r880 69 69 70 70 DEF_OPT( "errexit", 'e' ) /* exit on error */ 71 #define eflag psh->optlist[0].val71 #define eflag optlist[0].val 72 72 DEF_OPT( "noglob", 'f' ) /* no pathname expansion */ 73 #define fflag psh->optlist[1].val73 #define fflag optlist[1].val 74 74 DEF_OPT( "ignoreeof", 'I' ) /* do not exit on EOF */ 75 #define Iflag psh->optlist[2].val75 #define Iflag optlist[2].val 76 76 DEF_OPT( "interactive",'i' ) /* interactive shell */ 77 #define iflag psh->optlist[3].val77 #define iflag optlist[3].val 78 78 DEF_OPT( "monitor", 'm' ) /* job control */ 79 #define mflag psh->optlist[4].val79 #define mflag optlist[4].val 80 80 DEF_OPT( "noexec", 'n' ) /* [U] do not exec commands */ 81 #define nflag psh->optlist[5].val81 #define nflag optlist[5].val 82 82 DEF_OPT( "stdin", 's' ) /* read from stdin */ 83 #define sflag psh->optlist[6].val83 #define sflag optlist[6].val 84 84 DEF_OPT( "xtrace", 'x' ) /* trace after expansion */ 85 #define xflag psh->optlist[7].val85 #define xflag optlist[7].val 86 86 DEF_OPT( "verbose", 'v' ) /* trace read input */ 87 #define vflag psh->optlist[8].val87 #define vflag optlist[8].val 88 88 DEF_OPTS( "vi", 'V', 'V' ) /* vi style editing */ 89 #define Vflag psh->optlist[9].val89 #define Vflag optlist[9].val 90 90 DEF_OPTS( "emacs", 'E', 'V' ) /* emacs style editing */ 91 #define Eflag psh->optlist[10].val91 #define Eflag optlist[10].val 92 92 DEF_OPT( "noclobber", 'C' ) /* do not overwrite files with > */ 93 #define Cflag psh->optlist[11].val93 #define Cflag optlist[11].val 94 94 DEF_OPT( "allexport", 'a' ) /* export all variables */ 95 #define aflag psh->optlist[12].val95 #define aflag optlist[12].val 96 96 DEF_OPT( "notify", 'b' ) /* [U] report completion of background jobs */ 97 #define bflag psh->optlist[13].val97 #define bflag optlist[13].val 98 98 DEF_OPT( "nounset", 'u' ) /* error expansion of unset variables */ 99 #define uflag psh->optlist[14].val99 #define uflag optlist[14].val 100 100 DEF_OPT( "quietprofile", 'q' ) 101 #define qflag psh->optlist[15].val101 #define qflag optlist[15].val 102 102 DEF_OPT( "nolog", 0 ) /* [U] no functon defs in command history */ 103 #define nolog psh->optlist[16].val103 #define nolog optlist[16].val 104 104 DEF_OPT( "cdprint", 0 ) /* always print result of cd */ 105 #define cdprint psh->optlist[17].val105 #define cdprint optlist[17].val 106 106 DEF_OPT( "tabcomplete", 0 ) /* <tab> causes filename expansion */ 107 #define tabcomplete psh->optlist[18].val107 #define tabcomplete optlist[18].val 108 108 #ifdef DEBUG 109 109 DEF_OPT( "debug", 0 ) /* enable debug prints */ 110 #define debug psh->optlist[19].val110 #define debug optlist[19].val 111 111 #endif 112 112
Note:
See TracChangeset
for help on using the changeset viewer.