Skip to content
Snippets Groups Projects
Commit aa6b18e2 authored by rswindell's avatar rswindell
Browse files

Change "Remote Command Line" to just "Command Line".

parent 0b9d6b98
No related branches found
No related tags found
No related merge requests found
...@@ -1593,7 +1593,7 @@ This is the internal code for the external editor. ...@@ -1593,7 +1593,7 @@ This is the internal code for the external editor.
k=0; k=0;
sprintf(opt[k++],"%-32.32s%s","Name",cfg.xedit[i]->name); sprintf(opt[k++],"%-32.32s%s","Name",cfg.xedit[i]->name);
sprintf(opt[k++],"%-32.32s%s","Internal Code",cfg.xedit[i]->code); sprintf(opt[k++],"%-32.32s%s","Internal Code",cfg.xedit[i]->code);
sprintf(opt[k++],"%-32.32s%.40s","Remote Command Line",cfg.xedit[i]->rcmd); sprintf(opt[k++],"%-32.32s%.40s","Command Line",cfg.xedit[i]->rcmd);
sprintf(opt[k++],"%-32.32s%.40s","Access Requirements",cfg.xedit[i]->arstr); sprintf(opt[k++],"%-32.32s%.40s","Access Requirements",cfg.xedit[i]->arstr);
sprintf(opt[k++],"%-32.32s%s%s","Intercept Standard I/O" sprintf(opt[k++],"%-32.32s%s%s","Intercept Standard I/O"
,cfg.xedit[i]->misc&IO_INTS ? "Yes":"No" ,cfg.xedit[i]->misc&IO_INTS ? "Yes":"No"
...@@ -1664,11 +1664,11 @@ abreviation of the name. ...@@ -1664,11 +1664,11 @@ abreviation of the name.
case 2: case 2:
SETHELP(WHERE); SETHELP(WHERE);
/* /*
External Editor Remote Command Line: External Editor Command Line:
This is the command line to execute when using this editor remotely. This is the command line to execute when using this editor.
*/ */
uifc.input(WIN_MID|WIN_SAV,0,10,"Remote" uifc.input(WIN_MID|WIN_SAV,0,10,"Command"
,cfg.xedit[i]->rcmd,sizeof(cfg.xedit[i]->rcmd)-1,K_EDIT); ,cfg.xedit[i]->rcmd,sizeof(cfg.xedit[i]->rcmd)-1,K_EDIT);
break; break;
case 3: case 3:
...@@ -2296,7 +2296,7 @@ This is the global control key used to execute this event. ...@@ -2296,7 +2296,7 @@ This is the global control key used to execute this event.
This is the command line to execute when this hot key is pressed. This is the command line to execute when this hot key is pressed.
*/ */
uifc.input(WIN_MID|WIN_SAV,0,10,"Command Line" uifc.input(WIN_MID|WIN_SAV,0,10,"Command"
,cfg.hotkey[i]->cmd,sizeof(cfg.hotkey[i]->cmd)-1,K_EDIT); ,cfg.hotkey[i]->cmd,sizeof(cfg.hotkey[i]->cmd)-1,K_EDIT);
break; break;
} } } } } }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment