# HG changeset patch # User Jacob Alexander # Date 1428469864 25200 # Node ID 18c3c4924f20d8e163e3eaad9a3fb3ef23fc4a85 # Parent 64f43aad73af65098fc85affb93bad2169fac11a Code cleanup from cli changes. diff -r 64f43aad73af -r 18c3c4924f20 Debug/cli/cli.c --- a/Debug/cli/cli.c Thu Apr 02 23:55:51 2015 -0700 +++ b/Debug/cli/cli.c Tue Apr 07 22:11:04 2015 -0700 @@ -160,7 +160,7 @@ CLI_commandLookup(); // Add the command to the history - cli_saveHistory( CLILineBuffer ); + CLI_saveHistory( CLILineBuffer ); // Keep the array circular, discarding the older entries if ( CLIHistoryTail < CLIHistoryHead ) @@ -173,7 +173,7 @@ } CLIHistoryCurrent = CLIHistoryTail; // 'Up' starts at the last item - cli_saveHistory( NULL ); // delete the old temp buffer + CLI_saveHistory( NULL ); // delete the old temp buffer // Reset the buffer CLILineBufferCurrent = 0; @@ -212,20 +212,20 @@ { // Is first time pressing arrow. Save the current buffer CLILineBuffer[ prev_buf_pos ] = '\0'; - cli_saveHistory( CLILineBuffer ); + CLI_saveHistory( CLILineBuffer ); } // Grab the previus item from the history if there is one if ( RING_PREV( CLIHistoryCurrent ) != RING_PREV( CLIHistoryHead ) ) CLIHistoryCurrent = RING_PREV( CLIHistoryCurrent ); - cli_retreiveHistory( CLIHistoryCurrent ); + CLI_retreiveHistory( CLIHistoryCurrent ); } if ( CLILineBuffer[ prev_buf_pos + 2 ] == 0x42 ) // Hist next { // Grab the next item from the history if it exists if ( RING_NEXT( CLIHistoryCurrent ) != RING_NEXT( CLIHistoryTail ) ) CLIHistoryCurrent = RING_NEXT( CLIHistoryCurrent ); - cli_retreiveHistory( CLIHistoryCurrent ); + CLI_retreiveHistory( CLIHistoryCurrent ); } } return; diff -r 64f43aad73af -r 18c3c4924f20 Debug/cli/cli.h --- a/Debug/cli/cli.h Thu Apr 02 23:55:51 2015 -0700 +++ b/Debug/cli/cli.h Tue Apr 07 22:11:04 2015 -0700 @@ -67,8 +67,8 @@ const char name##CLIDict_DescEntry[] = description; #endif -#define RING_PREV(i) wrap(i-1,0,CLIMaxHistorySize-1) -#define RING_NEXT(i) wrap(i+1,0,CLIMaxHistorySize-1) +#define RING_PREV(i) CLI_wrap(i - 1, 0, CLIMaxHistorySize - 1) +#define RING_NEXT(i) CLI_wrap(i + 1, 0, CLIMaxHistorySize - 1) // ----- Structs -----