Subversion Repositories SvarDOS

Rev

Rev 989 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 989 Rev 1098
Line 28... Line 28...
28
 
28
 
29
static enum cmd_result cmd_rem(struct cmd_funcparam *p) {
29
static enum cmd_result cmd_rem(struct cmd_funcparam *p) {
30
  /* help screen ONLY if /? is the only argument - I do not want to output
30
  /* help screen ONLY if /? is the only argument - I do not want to output
31
   * help for ex. for "REM mouse.com /?" */
31
   * help for ex. for "REM mouse.com /?" */
32
  if ((p->argc == 1) && (imatch(p->argv[0], "/?"))) {
32
  if ((p->argc == 1) && (imatch(p->argv[0], "/?"))) {
33
    nls_outputnl(26,0); /* "Records comments (remarks) in a batch file or CONFIG.SYS" */
33
    nls_outputnl(26,0); /* "Records comments (remarks) in a batch file." */
34
    outputnl("");
34
    outputnl("");
35
    nls_outputnl(26,1); /* "REM [comment]" */
35
    nls_outputnl(26,1); /* "REM [comment]" */
36
  }
36
  }
37
  return(CMD_OK);
37
  return(CMD_OK);
38
}
38
}