tweaks: reshuffle a line into its proper order, and improve two comments

master
Benno Schulenberg 2021-11-07 11:23:45 +01:00
parent 0346e63c20
commit c692a6ca70
1 changed files with 4 additions and 3 deletions

View File

@ -218,15 +218,16 @@ funcstruct *exitfunc;
linestruct *search_history = NULL;
/* The current item in the list of strings that were searched for. */
linestruct *execute_history = NULL;
/* The current item in the list of commands that were run with ^R ^X. */
linestruct *replace_history = NULL;
/* The current item in the list of replace strings. */
linestruct *execute_history = NULL;
/* The current item in the list of commands that were run with ^T. */
#ifdef ENABLE_HISTORIES
linestruct *searchtop = NULL;
/* The oldest item in the list of search strings. */
linestruct *searchbot = NULL;
/* The newest item in the list of search strings. */
/* The empty item at the end of the list of search strings. */
linestruct *replacetop = NULL;
linestruct *replacebot = NULL;