Changeset ba276f7 in mainline for generic/src/console/kconsole.c
- Timestamp:
- 2005-12-11T22:39:11Z (19 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 96c939e
- Parents:
- 3550c393
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
generic/src/console/kconsole.c
r3550c393 rba276f7 359 359 rdln_print_c('\b',curlen-position); 360 360 } 361 histposition++; 362 histposition = histposition % KCONSOLE_HISTORY; 361 if (curlen) { 362 histposition++; 363 histposition = histposition % KCONSOLE_HISTORY; 364 } 363 365 current[curlen] = '\0'; 364 366 return current;
Note:
See TracChangeset
for help on using the changeset viewer.