fix problems moving back beyond start of history
authorChet Ramey <chet.ramey@case.edu>
Fri, 7 Feb 2020 19:56:45 +0000 (14:56 -0500)
committerTom Tromey <tom@tromey.com>
Tue, 30 Jun 2020 21:10:46 +0000 (15:10 -0600)
readline/readline/misc.c
readline/readline/patchlevel

index 64b1457d29e8af0bcefc6553ca97e93cf0cd6ad0..42005b0c1ec53d4dfb751b0a026b77913cbe1bad 100644 (file)
@@ -576,6 +576,7 @@ int
 rl_get_previous_history (int count, int key)
 {
   HIST_ENTRY *old_temp, *temp;
+  int had_saved_line;
 
   if (count < 0)
     return (rl_get_next_history (-count, key));
@@ -588,6 +589,7 @@ rl_get_previous_history (int count, int key)
     _rl_history_saved_point = (rl_point == rl_end) ? -1 : rl_point;
 
   /* If we don't have a line saved, then save this one. */
+  had_saved_line = _rl_saved_line_for_history != 0;
   rl_maybe_save_line ();
 
   /* If the current line has changed, save the changes. */
@@ -611,7 +613,8 @@ rl_get_previous_history (int count, int key)
 
   if (temp == 0)
     {
-      rl_maybe_unsave_line ();
+      if (had_saved_line == 0)
+        _rl_free_saved_history_line ();
       rl_ding ();
     }
   else
index fdf474049fce8501d87e7b8fa7cf2b72cab0ad9b..7cbda82ded86fa174ee44dba637d5fa80815bfdc 100644 (file)
@@ -1,3 +1,3 @@
 # Do not edit -- exists only for use by patch
 
-1
+2
This page took 0.024274 seconds and 4 git commands to generate.