Changeset b6604d9


Ignore:
Timestamp:
May 17, 2014, 8:34:22 PM (10 years ago)
Author:
Chris Staub <chris@…>
Parents:
8a51bde
git-author:
William Harrington <kb0iic@…> (05/17/14 12:07:12)
git-committer:
Chris Staub <chris@…> (05/17/14 20:34:22)
Message:

Replace readline 6.3 level 5 patch with level 6 patch.

File:
1 moved

Legend:

Unmodified
Added
Removed
  • patches/readline-6.3-branch_update-3.patch

    r8a51bde rb6604d9  
    11Submitted By: William Harrington (kb0iic at cross-lfs dot org)
    2 Date: 03-30-2014
     2Date: 05-17-2014
    33Initial Package Version: 6.3
    44Origin: Upstream
    55Upstream Status: Applied
    6 Description: Contains all upstream patches up to 6.3-005
     6Description: Contains all upstream patches up to 6.3-006
    77
    88diff -Naur readline-6.3.orig/display.c readline-6.3/display.c
    9 --- readline-6.3.orig/display.c 2013-12-27 12:10:56.000000000 -0600
    10 +++ readline-6.3/display.c      2014-04-24 20:09:52.659098542 -0500
    11 @@ -2677,7 +2677,8 @@
     9--- readline-6.3.orig/display.c 2013-12-27 18:10:56.000000000 +0000
     10+++ readline-6.3/display.c      2014-05-17 23:40:59.102644473 +0000
     11@@ -1637,7 +1637,7 @@
     12   /* If we are changing the number of invisible characters in a line, and
     13      the spot of first difference is before the end of the invisible chars,
     14      lendiff needs to be adjusted. */
     15-  if (current_line == 0 && !_rl_horizontal_scroll_mode &&
     16+  if (current_line == 0 && /* !_rl_horizontal_scroll_mode && */
     17       current_invis_chars != visible_wrap_offset)
     18     {
     19       if (MB_CUR_MAX > 1 && rl_byte_oriented == 0)
     20@@ -1825,8 +1825,13 @@
     21              else
     22                _rl_last_c_pos += bytes_to_insert;
     23 
     24+             /* XXX - we only want to do this if we are at the end of the line
     25+                so we move there with _rl_move_cursor_relative */
     26              if (_rl_horizontal_scroll_mode && ((oe-old) > (ne-new)))
     27-               goto clear_rest_of_line;
     28+               {
     29+                 _rl_move_cursor_relative (ne-new, new);
     30+                 goto clear_rest_of_line;
     31+               }
     32            }
     33        }
     34       /* Otherwise, print over the existing material. */
     35@@ -2677,7 +2682,8 @@
    1236 {
    1337   if (_rl_echoing_p)
     
    1943       fflush (rl_outstream);
    2044       rl_restart_output (1, 0);
     45diff -Naur readline-6.3.orig/patchlevel readline-6.3/patchlevel
     46--- readline-6.3.orig/patchlevel        2013-11-15 13:11:11.000000000 +0000
     47+++ readline-6.3/patchlevel     2014-05-17 23:40:59.102644473 +0000
     48@@ -1,3 +1,3 @@
     49 # Do not edit -- exists only for use by patch
     50 
     51-5
     52+6
    2153diff -Naur readline-6.3.orig/readline.c readline-6.3/readline.c
    22 --- readline-6.3.orig/readline.c        2013-10-28 13:58:06.000000000 -0500
    23 +++ readline-6.3/readline.c     2014-04-24 20:09:49.666544077 -0500
     54--- readline-6.3.orig/readline.c        2013-10-28 18:58:06.000000000 +0000
     55+++ readline-6.3/readline.c     2014-05-17 23:40:59.092644501 +0000
    2456@@ -744,7 +744,8 @@
    2557     r = _rl_subseq_result (r, cxt->oldmap, cxt->okey, (cxt->flags & KSEQ_SUBSEQ));
     
    4274 #endif
    4375diff -Naur readline-6.3.orig/rltypedefs.h readline-6.3/rltypedefs.h
    44 --- readline-6.3.orig/rltypedefs.h      2011-03-26 13:53:31.000000000 -0500
    45 +++ readline-6.3/rltypedefs.h   2014-04-24 20:09:54.218697974 -0500
     76--- readline-6.3.orig/rltypedefs.h      2011-03-26 18:53:31.000000000 +0000
     77+++ readline-6.3/rltypedefs.h   2014-05-17 23:40:59.099311149 +0000
    4678@@ -26,6 +26,25 @@
    4779 extern "C" {
     
    71103 #if !defined (_RL_FUNCTION_TYPEDEF)
    72104diff -Naur readline-6.3.orig/util.c readline-6.3/util.c
    73 --- readline-6.3.orig/util.c    2013-09-02 12:36:12.000000000 -0500
    74 +++ readline-6.3/util.c 2014-04-24 20:09:51.129496698 -0500
     105--- readline-6.3.orig/util.c    2013-09-02 17:36:12.000000000 +0000
     106+++ readline-6.3/util.c 2014-05-17 23:40:59.095977825 +0000
    75107@@ -476,6 +476,7 @@
    76108   return (strcpy ((char *)xmalloc (1 + (int)strlen (s)), (s)));
Note: See TracChangeset for help on using the changeset viewer.