Changeset 7191 for code/branches/consolecommands3/src/libraries
- Timestamp:
- Aug 19, 2010, 6:07:52 PM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/consolecommands3/src/libraries/core/Shell.cc
r7189 r7191 222 222 void Shell::addToHistory(const std::string& command) 223 223 { 224 if (command == "") 225 return; 226 227 size_t previous_offset = mod(this->historyOffset_ - 1, this->maxHistoryLength_); 228 if (previous_offset < this->commandHistory_.size() && command == this->commandHistory_[previous_offset]) 229 return; 230 224 231 ModifyConfigValue(commandHistory_, set, this->historyOffset_, command); 225 232 this->historyPosition_ = 0;
Note: See TracChangeset
for help on using the changeset viewer.