Subversion Repositories SvarDOS

Rev

Rev 372 | Rev 397 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 372 Rev 377
Line 357... Line 357...
357
 
357
 
358
    /* try matching (and executing) an internal command */
358
    /* try matching (and executing) an internal command */
359
    {
359
    {
360
      int ecode = cmd_process(*rmod_envseg, cmdline, BUFFER);
360
      int ecode = cmd_process(*rmod_envseg, cmdline, BUFFER);
361
      if (ecode >= 0) *lastexitcode = ecode;
361
      if (ecode >= 0) *lastexitcode = ecode;
362
      if (ecode >= -1) continue; /* internal command executed */
362
      if (ecode >= -1) { /* internal command executed */
-
 
363
        outputnl("");
-
 
364
        continue;
-
 
365
      }
363
    }
366
    }
364
 
367
 
365
    /* if here, then this was not an internal command */
368
    /* if here, then this was not an internal command */
366
    run_as_external(cmdline);
369
    run_as_external(cmdline);
367
 
370