From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Jul 21 12:48:05 2004 Return-Path: Delivered-To: freebsd-ports-bugs@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id F061B16A4CF for ; Wed, 21 Jul 2004 12:48:05 +0000 (GMT) Received: from mail.vonostingroup.com (ip209-154.digitalrealm.net [216.144.209.154]) by mx1.FreeBSD.org (Postfix) with SMTP id 3B51443D5C for ; Wed, 21 Jul 2004 12:48:03 +0000 (GMT) (envelope-from laszlof@vonostingroup.com) Received: (qmail 92201 invoked by uid 0); 21 Jul 2004 12:49:06 -0000 Received: from laszlof@vonostingroup.com by ritamari.vonostingroup.com by uid 89 with qmail-scanner-1.20 (clamuko: 0.65. spamassassin: 2.63. Clear:RC:1(192.168.1.100):. Processed in 0.882178 secs); 21 Jul 2004 12:49:06 -0000 Received: from unknown (HELO vonostingroup.com) (laszlof@vonostingroup.com@192.168.1.100) by 192.168.1.5 with SMTP; 21 Jul 2004 12:49:05 -0000 Message-ID: <40FE73F2.80501@vonostingroup.com> Date: Wed, 21 Jul 2004 08:47:30 -0500 From: Frank Laszlo User-Agent: Mozilla Thunderbird 0.5 (Windows/20040207) X-Accept-Language: en-us, en MIME-Version: 1.0 To: Volker Stolz References: <200407211120.i6LBKwcC024133@freefall.freebsd.org> In-Reply-To: <200407211120.i6LBKwcC024133@freefall.freebsd.org> Content-Type: multipart/mixed; boundary="------------030204020700070501010608" cc: freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/69352: Fix for ports/61297 (readline port) X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 21 Jul 2004 12:48:06 -0000 This is a multi-part message in MIME format. --------------030204020700070501010608 Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit Here is the patch in unified diff format. Maybe someone should point this at the maintainer for readline in base? Thanks. Frank Laszlo --------------030204020700070501010608 Content-Type: text/plain; name="readline.patch" Content-Transfer-Encoding: 7bit Content-Disposition: inline; filename="readline.patch" diff -rNU3 readline.old/Makefile readline/Makefile --- readline.old/Makefile Sun Dec 28 05:32:48 2003 +++ readline/Makefile Wed Jul 21 08:46:39 2004 @@ -7,6 +7,7 @@ PORTNAME= readline PORTVERSION= 4.3 +PORTREVISION= 1 CATEGORIES= devel MASTER_SITES= ftp://ftp.cwru.edu/pub/bash/ diff -rNU3 readline.old/files/patch-aa readline/files/patch-aa --- readline.old/files/patch-aa Wed Dec 31 19:00:00 1969 +++ readline/files/patch-aa Tue Jul 20 13:28:09 2004 @@ -0,0 +1,16 @@ +*** ../readline-4.3/bind.c Thu Jan 24 11:15:52 2002 +--- bind.c Wed Jul 31 09:11:18 2002 +*************** +*** 312,316 **** + and the function bound to `a' to be executed when the user + types `abx', leaving `bx' in the input queue. */ +! if (k.function /* && k.type == ISFUNC */) + { + map[ANYOTHERKEY] = k; +--- 312,316 ---- + and the function bound to `a' to be executed when the user + types `abx', leaving `bx' in the input queue. */ +! if (k.function && ((k.type == ISFUNC && k.function != rl_do_lowercase_version) || k.type == ISMACR)) + { + map[ANYOTHERKEY] = k; + --------------030204020700070501010608--