[arch-commits] Commit in readline/trunk (2 files)

Bartłomiej Piotrowski bpiotrowski at nymeria.archlinux.org
Tue Mar 11 06:23:39 UTC 2014


    Date: Tuesday, March 11, 2014 @ 07:23:39
  Author: bpiotrowski
Revision: 207492

upgpkg: readline 6.3-3

update patch fixing various issues in ipython

Modified:
  readline/trunk/PKGBUILD
  readline/trunk/readline-6.3-dispatch-multikey.patch

--------------------------------------+
 PKGBUILD                             |    4 ++--
 readline-6.3-dispatch-multikey.patch |    7 ++++---
 2 files changed, 6 insertions(+), 5 deletions(-)

Modified: PKGBUILD
===================================================================
--- PKGBUILD	2014-03-11 04:40:40 UTC (rev 207491)
+++ PKGBUILD	2014-03-11 06:23:39 UTC (rev 207492)
@@ -7,7 +7,7 @@
 _basever=6.3
 _patchlevel=000 #prepare for some patches
 pkgver=$_basever #.$_patchlevel
-pkgrel=2
+pkgrel=3
 pkgdesc='GNU readline library'
 arch=('i686' 'x86_64')
 url='http://tiswww.case.edu/php/chet/readline/rltop.html'
@@ -31,7 +31,7 @@
          'SKIP'
          '58d54966c1191db45973cb3191ac621a'
          'fcfe0a50c69f56f66ad04127a927862e'
-         '5daf0ad2a175ccd43d7791ee3ce3d520')
+         'ee4e0df0dbf7e80783b7aa198c67fb45')
 
 prepare() {
   cd $pkgname-$pkgver

Modified: readline-6.3-dispatch-multikey.patch
===================================================================
--- readline-6.3-dispatch-multikey.patch	2014-03-11 04:40:40 UTC (rev 207491)
+++ readline-6.3-dispatch-multikey.patch	2014-03-11 06:23:39 UTC (rev 207492)
@@ -1,5 +1,5 @@
 *** ../bash-4.3/lib/readline/readline.c	2013-10-28 14:58:06.000000000 -0400
---- lib/readline/readline.c	2014-03-10 11:01:19.000000000 -0400
+--- lib/readline/readline.c	2014-03-10 14:15:02.000000000 -0400
 ***************
 *** 745,749 ****
   
@@ -7,9 +7,10 @@
 !   if (r == 0)			/* success! */
       {
         _rl_keyseq_chain_dispose ();
---- 745,749 ----
+--- 745,750 ----
   
     RL_CHECK_SIGNALS ();
-!   if (r == 0 || (r == -1 && (cxt->flags & KSEQ_SUBSEQ) == 0))	/* success! or failure! */
+!   /* We only treat values < 0 specially to simulate recursion. */
+!   if (r >= 0 || (r == -1 && (cxt->flags & KSEQ_SUBSEQ) == 0))	/* success! or failure! */
       {
         _rl_keyseq_chain_dispose ();




More information about the arch-commits mailing list