Changeset 1203 for trunk/src/kash/generated/init.c
- Timestamp:
- Oct 7, 2007, 3:39:01 AM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/kash/generated/init.c
r1202 r1203 210 210 /* from eval.c: */ 211 211 { 212 evalskip = 0;213 loopnest = 0;214 funcnest = 0;212 psh->evalskip = 0; 213 psh->loopnest = 0; 214 psh->funcnest = 0; 215 215 } 216 216 217 217 /* from input.c: */ 218 218 { 219 if ( exception != EXSHELLPROC)220 p arselleft =parsenleft = 0; /* clear input buffer */219 if (psh->exception != EXSHELLPROC) 220 psh->parselleft = psh->parsenleft = 0; /* clear input buffer */ 221 221 popallfiles(psh); 222 222 } … … 234 234 /* from parser.c: */ 235 235 { 236 tokpushback = 0;237 checkkwd = 0;236 psh->tokpushback = 0; 237 psh->checkkwd = 0; 238 238 } 239 239 240 240 /* from redir.c: */ 241 241 { 242 while ( redirlist)242 while (psh->redirlist) 243 243 popredir(psh); 244 244 } … … 261 261 /* from eval.c: */ 262 262 { 263 exitstatus = 0;263 psh->exitstatus = 0; 264 264 } 265 265 … … 276 276 /* from jobs.c: */ 277 277 { 278 backgndpid = -1;278 psh->backgndpid = -1; 279 279 #if JOBS 280 280 jobctl = 0;
Note:
See TracChangeset
for help on using the changeset viewer.