add command |W (extra word spacing)

This commit is contained in:
Fabian Kurz 2019-11-06 20:43:19 +01:00
parent d7978002ba
commit ea92ff651b
1 changed files with 6 additions and 0 deletions

View File

@ -1066,6 +1066,12 @@ void command (char * cmd, CWP *cw) {
add_silence(i, cw);
}
break;
case 'W':
if (i >= 0 && i <= 10) {
cw->ews = i;
init_cw(cw);
}
break;
default:
fprintf(stderr, _("Invalid command %s. Ignored.\n"), cmd);
}