Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
May 27, 2008, 1:17:33 AM (16 years ago)
Author:
landauf
Message:

after some changes in MultiTypeMath and co., the new config and tconfig commands work very well. they substitute set and tset respectively.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • code/branches/console/src/core/CommandEvaluation.cc

    r1434 r1435  
    100100        if (!this->bNewCommand_)
    101101        {
    102 std::cout << "not new" << std::endl;
    103102            switch (this->state_)
    104103            {
     
    163162        {
    164163            case CS_Uninitialized:
    165 std::cout << "hint: CS_Uninitialized" << std::endl;
    166164                break;
    167165            case CS_Empty:
    168 std::cout << "hint: CS_Empty" << std::endl;
    169166            case CS_ShortcutOrIdentifier:
    170 std::cout << "hint: CS_ShortcutOrIdentifier" << std::endl;
    171167                if (this->listOfPossibleFunctions_.size() == 0)
    172168                    return CommandEvaluation::dump(this->listOfPossibleIdentifiers_);
     
    177173                break;
    178174            case CS_Function:
    179 std::cout << "hint: CS_Function" << std::endl;
    180175                return CommandEvaluation::dump(this->listOfPossibleFunctions_);
    181176                break;
    182177            case CS_ParamPreparation:
    183 std::cout << "hint: CS_ParamPreparation" << std::endl;
    184178            case CS_Params:
    185 std::cout << "hint: CS_Params" << std::endl;
    186179                if (this->listOfPossibleArguments_.size() > 0)
    187180                    return CommandEvaluation::dump(this->listOfPossibleArguments_);
     
    189182                    return CommandEvaluation::dump(this->function_);
    190183            case CS_Finished:
    191 std::cout << "hint: CS_Finished" << std::endl;
    192184                if (this->function_)
    193185                    return CommandEvaluation::dump(this->function_);
    194186                break;
    195187            case CS_Error:
    196 std::cout << "hint: CS_Error" << std::endl;
    197188                return this->errorMessage_;
    198189                break;
Note: See TracChangeset for help on using the changeset viewer.