From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 8638 invoked by alias); 27 Jan 2004 06:50:36 -0000 Mailing-List: contact gdb-patches-help@sources.redhat.com; run by ezmlm Precedence: bulk List-Subscribe: List-Archive: List-Post: List-Help: , Sender: gdb-patches-owner@sources.redhat.com Received: (qmail 8629 invoked from network); 27 Jan 2004 06:50:35 -0000 Received: from unknown (HELO hall.mail.mindspring.net) (207.69.200.60) by sources.redhat.com with SMTP; 27 Jan 2004 06:50:35 -0000 Received: from user-119a90a.biz.mindspring.com ([66.149.36.10] helo=berman.michael-chastain.com) by hall.mail.mindspring.net with esmtp (Exim 3.33 #1) id 1AlN3T-0007DX-00; Tue, 27 Jan 2004 01:50:35 -0500 Received: by berman.michael-chastain.com (Postfix, from userid 502) id 4C4224B363; Tue, 27 Jan 2004 01:50:30 -0500 (EST) To: ezannoni@redhat.com, gdb-patches@sources.redhat.com Subject: Re: [PATCH] synchronize readline w/ official patches Message-Id: <20040127065030.4C4224B363@berman.michael-chastain.com> Date: Tue, 27 Jan 2004 06:50:00 -0000 From: mec.gnu@mindspring.com (Michael Elizabeth Chastain) X-SW-Source: 2004-01/txt/msg00684.txt.bz2 I gave this a whirl on hp-ux 11.11. It built with gcc, hpcc, and hpacc. I ran the test suite before and after with the gcc-built version, using hpcc/hpacc for the target compilers. Worked fine. Michael C === 2004-01-26 Elena Zannoni Merge in official patches to readline-4.3 from ftp://ftp.cwru.edu/pub/bash/readline-4.3-patches: NOTE: Patch-ID readline-43-004 was already applied (see below). * bind.c (rl_generic_bind): Pressing certain key sequences causes an infinite loop in _rl_dispatch_subseq with the `key' argument set to 256. This eventually causes bash to exceed the stack size limit and crash with a segmentation violation. Patch-ID: readline43-001. * readline.c (_rl_dispatch_subseq): Repeating an edit in vi-mode with `.' does not work. Patch-ID: readline43-002. * mbutil.c (_rl_get_char_len, _rl_compare_chars, _rl_adjust_point): When in a locale with multibyte characters, the readline display updater will occasionally cause a segmentation fault when attempting to compute the length of the first multibyte character on the line. Patch-ID: readline43-003. * vi_mode.c (_rl_vi_change_mbchar_case): Using the vi editing mode's case-changing commands in a locale with multibyte characters will cause garbage characters to be inserted into the editing buffer. Patch-ID: readline43-005.