From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 97134 invoked by alias); 8 Jul 2015 20:52:02 -0000 Mailing-List: contact gdb-patches-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: gdb-patches-owner@sourceware.org Received: (qmail 97123 invoked by uid 89); 8 Jul 2015 20:52:01 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-1.6 required=5.0 tests=AWL,BAYES_00,KAM_LAZY_DOMAIN_SECURITY,RCVD_IN_DNSWL_LOW autolearn=no version=3.3.2 X-HELO: mail-oi0-f44.google.com Received: from mail-oi0-f44.google.com (HELO mail-oi0-f44.google.com) (209.85.218.44) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with (AES128-GCM-SHA256 encrypted) ESMTPS; Wed, 08 Jul 2015 20:52:00 +0000 Received: by oiab3 with SMTP id b3so56989286oia.1 for ; Wed, 08 Jul 2015 13:51:58 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:mime-version:in-reply-to:references:from:date :message-id:subject:to:cc:content-type; bh=zjLKwiiodmEoKt+x43Fez2Dda7aYgZ991618X161/es=; b=iOyW3MZsvaHV3o5ATfKinCT2BQ3h0O1rtDD3A4clxhREUUsrs20y+mBs0cZ1L42I6r CksGPD2GDABEP9yiE8zKi7JBQI559w6Lc4kWid68FqpPTs4EAE9QqhWrtO6P/tuX4Ada OegwkyZLKUz+NI1xnxZStgT0PyF9ZmDvKAiS4kQN17Jn8rRHGZFshEmgO/DsIoCyM7Sq oBI4u9JBLaXsAknPYPupirgxcSg8bulNWB2DaoSZ5i815Lqd/EloKv8AK33WGoPhwnMe 0crgyWDU+1n1v7MpXzJ+H45H5lq4+S4TRdRNptWUr9+E2AcDpX07wnW8iOvXpwiHX2Bk NlBA== X-Gm-Message-State: ALoCoQlCq3GvkKxycMSjpcKulTsJecNBgsACLnourNedj23ccozDsqLr0tB+fKP+hAxm3hPzz2mf X-Received: by 10.202.58.215 with SMTP id h206mr10935823oia.23.1436388718848; Wed, 08 Jul 2015 13:51:58 -0700 (PDT) MIME-Version: 1.0 Received: by 10.182.96.167 with HTTP; Wed, 8 Jul 2015 13:51:39 -0700 (PDT) In-Reply-To: References: From: Patrick Palka Date: Wed, 08 Jul 2015 20:52:00 -0000 Message-ID: Subject: Re: [PATCH 0/3] convert tui window names to lower case To: Andrew Burgess Cc: "gdb-patches@sourceware.org" Content-Type: text/plain; charset=UTF-8 X-SW-Source: 2015-07/txt/msg00260.txt.bz2 On Wed, Jul 8, 2015 at 4:37 PM, Andrew Burgess wrote: > This patch series converts the tui window names to lower case. The > window names are already lower case in the documentation, and the > recently added command completer for 'focus' reports window names as > lower case. > > The window names aren't actally shown in that many places, so this > change shouldn't be that big of a upset (I hope), plus all the > commands that take a window name already accepts both upper and lower > case. Cool, I thought about doing something like this too, after I added the "focus" completer. What about the occurrences of "SRC", "CMD", etc in tui-layout.c? These do not seem to be changed in this series but it seems like they should.