X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=lib%2Freadline%2Fhistory.c;h=e2d65ea504de46a9b04d7f99b21d325ce696f5ed;hb=f73dda092b33638d2d5e9c35375f687a607b5403;hp=d59d8ce2755e6fb668ebacfe115599c2d99d7a88;hpb=28ef6c316f1aff914bb95ac09787a3c83c1815fd;p=platform%2Fupstream%2Fbash.git diff --git a/lib/readline/history.c b/lib/readline/history.c index d59d8ce..e2d65ea 100644 --- a/lib/readline/history.c +++ b/lib/readline/history.c @@ -71,6 +71,9 @@ static HIST_ENTRY **the_history = (HIST_ENTRY **)NULL; history that we save. */ static int history_stifled; +/* The current number of slots allocated to the input_history. */ +static int history_size; + /* If HISTORY_STIFLED is non-zero, then this is the maximum number of entries to remember. */ int history_max_entries; @@ -83,9 +86,6 @@ int history_offset; /* The number of strings currently stored in the history list. */ int history_length; -/* The current number of slots allocated to the input_history. */ -static int history_size; - /* The logical `base' of the history array. It defaults to 1. */ int history_base = 1;