Subversion Repositories SvarDOS

Rev

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

Rev 957 Rev 958
Line 935... Line 935...
935
    }
935
    }
936
 
936
 
937
    /* I should never ever land here */
937
    /* I should never ever land here */
938
    outputnl("INTERNAL ERR: INVALID CMDRES");
938
    outputnl("INTERNAL ERR: INVALID CMDRES");
939
 
939
 
-
 
940
    /* repeat unless /C was asked - but always finish running an ongoing batch
-
 
941
     * file (otherwise only first BAT command would be executed with /C) */
940
  } while ((rmod->flags & FLAG_EXEC_AND_QUIT) == 0);
942
  } while (((rmod->flags & FLAG_EXEC_AND_QUIT) == 0) || (rmod->bat != NULL));
941
 
943
 
942
  sayonara(rmod);
944
  sayonara(rmod);
943
  return(0);
945
  return(0);
944
}
946
}