===========================================================================
| 1116 | |
| 1117 | //=========================================================================== |
| 1118 | Update_t CmdSymbolsCommand (int nArgs) |
| 1119 | { |
| 1120 | if (! nArgs) |
| 1121 | { |
| 1122 | return CmdSymbolsInfo( 1 ); |
| 1123 | } |
| 1124 | |
| 1125 | int bSymbolTable = SYMBOL_TABLE_MAIN << GetSymbolTableFromCommand(); |
| 1126 | return _CmdSymbolsCommon( nArgs, bSymbolTable ); // BUGFIX 2.6.2.12 Hard-coded to SYMMAIN |
| 1127 | } |
| 1128 | |
| 1129 | //=========================================================================== |
| 1130 | Update_t CmdSymbolsSave (int nArgs) |
nothing calls this directly
no test coverage detected