Changeset 5656 in orxonox.OLD for trunk/src/lib/shell
- Timestamp:
- Nov 20, 2005, 9:45:28 PM (19 years ago)
- Location:
- trunk/src/lib/shell
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/lib/shell/shell_command.cc
r5652 r5656 170 170 unsigned int fktPos = 1; //< the position of the function (needed for finding it) 171 171 // long completeType = SHELLC_NONE; //< the Type we'd like to complete. 172 SubString inputSplits(executionString, true);172 SubString inputSplits(executionString, " \t\n,"); 173 173 174 174 if (inputSplits.getCount() == 0) -
trunk/src/lib/shell/shell_completion.cc
r5639 r5656 95 95 else 96 96 completionLine = this->input->getInput() + strspn(this->input->getInput(), " \t\n"); 97 SubString inputSplits(completionLine, true);97 SubString inputSplits(completionLine, " \t\n,"); 98 98 99 99 // What String will be completed
Note: See TracChangeset
for help on using the changeset viewer.