From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Jul 21 13:00:39 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B42D416A4CE for ; Wed, 21 Jul 2004 13:00:39 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id AA5CB43D45 for ; Wed, 21 Jul 2004 13:00:39 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) i6LD0dTs038540 for ; Wed, 21 Jul 2004 13:00:39 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6LD0dXM038539; Wed, 21 Jul 2004 13:00:39 GMT (envelope-from gnats) Date: Wed, 21 Jul 2004 13:00:39 GMT Message-Id: <200407211300.i6LD0dXM038539@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: Frank Laszlo 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 Reply-To: Frank Laszlo List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 21 Jul 2004 13:00:39 -0000 The following reply was made to PR ports/69352; it has been noted by GNATS. From: Frank Laszlo To: freebsd-gnats-submit@FreeBSD.org Cc: Subject: Re: ports/69352: Fix for ports/61297 (readline port) Date: Wed, 21 Jul 2004 08:52:05 -0500 This is a multi-part message in MIME format. --------------090607000307090409000609 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 --------------090607000307090409000609 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; + --------------090607000307090409000609--