|
Description
|
I'd seen this before but thought it was line noise or type-ahead. Anyway,
do this in mailx:
& w
No file specified
.&
Note the '.&'. This is because of two printfs in cmd2.c:
printf(gettext("No file specified\n."));
Note the '.' after the \n. The '.' should be first.
Note also that there are _two_ of these printfs to fix.
|