From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 14941 invoked by alias); 23 Nov 2005 19:08:27 -0000 Received: (qmail 14933 invoked by uid 22791); 23 Nov 2005 19:08:27 -0000 X-Spam-Check-By: sourceware.org Received: from lon-del-04.spheriq.net (HELO lon-del-04.spheriq.net) (195.46.50.101) by sourceware.org (qpsmtpd/0.31) with ESMTP; Wed, 23 Nov 2005 19:08:25 +0000 Received: from lon-out-02.spheriq.net ([195.46.50.130]) by lon-del-04.spheriq.net with ESMTP id jANJ8MEo004601 for ; Wed, 23 Nov 2005 19:08:22 GMT Received: from lon-cus-01.spheriq.net (lon-cus-01.spheriq.net [195.46.50.37]) by lon-out-02.spheriq.net with ESMTP id jANJ8MM7031624 for ; Wed, 23 Nov 2005 19:08:22 GMT Received: from beta.dmz-eu.st.com (beta.dmz-eu.st.com [164.129.1.35]) by lon-cus-01.spheriq.net with ESMTP id jANJ8L7R032574 (version=TLSv1/SSLv3 cipher=EDH-RSA-DES-CBC3-SHA bits=168 verify=OK); Wed, 23 Nov 2005 19:08:22 GMT Received: from zeta.dmz-eu.st.com (ns2.st.com [164.129.230.9]) by beta.dmz-eu.st.com (STMicroelectronics) with ESMTP id D7143DA41; Wed, 23 Nov 2005 19:08:16 +0000 (GMT) Received: by zeta.dmz-eu.st.com (STMicroelectronics, from userid 60012) id A52B8474AF; Wed, 23 Nov 2005 19:11:18 +0000 (GMT) Received: from zeta.dmz-eu.st.com (localhost [127.0.0.1]) by zeta.dmz-eu.st.com (STMicroelectronics) with ESMTP id 66D6475995; Wed, 23 Nov 2005 19:11:18 +0000 (UTC) Received: from mail1.bri.st.com (mail1.bri.st.com [164.129.8.218]) by zeta.dmz-eu.st.com (STMicroelectronics) with ESMTP id CB1FA474A8; Wed, 23 Nov 2005 19:11:17 +0000 (GMT) Received: from [164.129.15.13] (terrorhawk.bri.st.com [164.129.15.13]) by mail1.bri.st.com (MOS 3.5.8-GR) with ESMTP id CGZ88272 (AUTH "andrew stubbs"); Wed, 23 Nov 2005 19:08:14 GMT Message-ID: <4384BD74.1060600@st.com> Date: Wed, 23 Nov 2005 21:07:00 -0000 From: Andrew STUBBS User-Agent: Mozilla Thunderbird 1.0.2 (Windows/20050317) MIME-Version: 1.0 To: Eli Zaretskii Cc: schwab@suse.de, gdb-patches@sources.redhat.com Subject: Re: [PATCH] Fix 'Undefined command' error message References: <4379EC0A.3060601@st.com> <20051116201300.GA23472@nevyn.them.org> <4382072A.1010402@st.com> <43849117.5030805@st.com> In-Reply-To: Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-O-Spoofed: Not Scanned X-O-General-Status: No X-O-Spam1-Status: Not Scanned X-O-Spam2-Status: Not Scanned X-O-URL-Status: Not Scanned X-O-Virus1-Status: No X-O-Virus2-Status: Not Scanned X-O-Virus3-Status: No X-O-Virus4-Status: No X-O-Virus5-Status: Not Scanned X-O-Image-Status: Not Scanned X-O-Attach-Status: Not Scanned X-SpheriQ-Ver: 4.2.0 X-IsSubscribed: yes Mailing-List: contact gdb-patches-help@sourceware.org; run by ezmlm Precedence: bulk List-Subscribe: List-Archive: List-Post: List-Help: , Sender: gdb-patches-owner@sourceware.org X-SW-Source: 2005-11/txt/msg00438.txt.bz2 Eli Zaretskii wrote: > What TUI commands use these problematic characters, and how does TUI > avoid the problems pointed out by Andreas? I don't know what uses '$', but the other three, '>', '<' and '+', are commands in their own right and are used the move the source window right, left and up through the file. '-' moves down. There may be other commands I don't know about. The TUI does *not* avoid the problems pointed out by Andreas. 'u+1' must be written 'u +1'. The latter syntax seems more correct to me in any case - the '+' is part of the operand, not the command. That said, many people are probably used to using the command like Andreas. Andrew