Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Changeset 5656 in orxonox.OLD for trunk/src/lib/shell


Ignore:
Timestamp:
Nov 20, 2005, 9:45:28 PM (19 years ago)
Author:
bensch
Message:

orxonox/trunk: new Version of the String-splitter (without Escape-sequence for the time being)

Location:
trunk/src/lib/shell
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/lib/shell/shell_command.cc

    r5652 r5656  
    170170  unsigned int fktPos = 1;                //< the position of the function (needed for finding it)
    171171//  long completeType = SHELLC_NONE;      //< the Type we'd like to complete.
    172   SubString inputSplits(executionString, true);
     172  SubString inputSplits(executionString, " \t\n,");
    173173
    174174  if (inputSplits.getCount() == 0)
  • trunk/src/lib/shell/shell_completion.cc

    r5639 r5656  
    9595  else
    9696    completionLine = this->input->getInput() + strspn(this->input->getInput(), " \t\n");
    97   SubString inputSplits(completionLine, true);
     97  SubString inputSplits(completionLine, " \t\n,");
    9898
    9999  // What String will be completed
Note: See TracChangeset for help on using the changeset viewer.