| 156 | |
| 157 | |
| 158 | void CommandData::ParseDone() |
| 159 | { |
| 160 | if (FileArgs.ItemsCount()==0 && !FileLists) |
| 161 | FileArgs.AddString(MASKALL); |
| 162 | wchar CmdChar=toupperw(Command[0]); |
| 163 | bool Extract=CmdChar=='X' || CmdChar=='E' || CmdChar=='P'; |
| 164 | if (Test && Extract) |
| 165 | Test=false; // Switch '-t' is senseless for 'X', 'E', 'P' commands. |
| 166 | |
| 167 | // Suppress the copyright message and final end of line for 'lb' and 'vb'. |
| 168 | if ((CmdChar=='L' || CmdChar=='V') && Command[1]=='B') |
| 169 | BareOutput=true; |
| 170 | } |
| 171 | |
| 172 | |
| 173 | #if !defined(SFX_MODULE) |
no test coverage detected