From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 18112 invoked by alias); 25 Jun 2014 20:16:20 -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 18097 invoked by uid 89); 25 Jun 2014 20:16:19 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=AWL,BAYES_00,RCVD_IN_DNSWL_LOW,SPF_PASS,T_RP_MATCHES_RCVD autolearn=ham version=3.3.2 X-HELO: mail-ve0-f181.google.com Received: from mail-ve0-f181.google.com (HELO mail-ve0-f181.google.com) (209.85.128.181) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with (AES128-SHA encrypted) ESMTPS; Wed, 25 Jun 2014 20:16:17 +0000 Received: by mail-ve0-f181.google.com with SMTP id db11so2581238veb.40 for ; Wed, 25 Jun 2014 13:16:14 -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:date :message-id:subject:from:to:cc:content-type; bh=qGSSGM1sjrV1jw2fnwWL5WE+bP0xsb+pc2PkUaaTGXw=; b=VBK9CAoEP1ivhoI9OMzQKp+mVg5DAlTvnNGXqaLSJsD0cGpoJl63VSUNp4XMQ8+/uA 7iOr7rs0Iw5OYPuhP3pDxWImECDHigpnMyzwPIQXemPByOG0tKqq3AwXaw71tJhJB0zI UIqhNOS6+OKRncxSkdaJoyiwZAPYPFS+nS7T9Zieg6yynDn3eK9Z3zXFgmKx6HGUjwUS g0OOFwRZXlXzntYifEQC/QkCHHaR7SLy1ug+1FoHHGkfDYASlRjND1QXrmlYYGo4lOrg /96+2GGHyd1plqU+3e7+AOgocb6B1zLGFu+4Frz9C3ANjD2aMGZCc9+wKqSsT/o49n3h uphg== X-Gm-Message-State: ALoCoQkT1USCcKUJr4M8jvQxJeqAIDrkD9gO8Zyyix9nlLIm3HzbLBo6Ymu+pKcNm0dblX+CMD0j MIME-Version: 1.0 X-Received: by 10.58.150.100 with SMTP id uh4mr9149226veb.30.1403727374483; Wed, 25 Jun 2014 13:16:14 -0700 (PDT) Received: by 10.52.28.233 with HTTP; Wed, 25 Jun 2014 13:16:14 -0700 (PDT) In-Reply-To: <83tx7aqnr0.fsf@gnu.org> References: <1403626650-26313-1-git-send-email-tromey@redhat.com> <83tx7aqnr0.fsf@gnu.org> Date: Wed, 25 Jun 2014 20:16:00 -0000 Message-ID: Subject: Re: [PATCH] add "continue" response to pager From: Doug Evans To: Eli Zaretskii Cc: Tom Tromey , gdb-patches Content-Type: text/plain; charset=UTF-8 X-IsSubscribed: yes X-SW-Source: 2014-06/txt/msg00895.txt.bz2 On Tue, Jun 24, 2014 at 6:24 PM, Eli Zaretskii wrote: >> From: Tom Tromey >> Cc: Tom Tromey >> Date: Tue, 24 Jun 2014 10:17:30 -0600 >> >> This adds a "continue" response to the pager. If the user types "c" >> in response to the pager prompt, pagination will be disabled for the >> duration of one command -- but re-enabled afterward. This is handy if >> you type a command that produces a lot of output, and you don't want >> to baby-sit it by typing "return" each time the prompt comes up. >> >> Built and regtested on x86-64 Fedora 20. >> This required a couple of minor tweaks to existing tests. > > Thanks, but what about updating the manual? And a NEWS entry.