Received: by 2002:ac0:a5b6:0:0:0:0:0 with SMTP id m51-v6csp1413494imm; Wed, 6 Jun 2018 15:55:00 -0700 (PDT) X-Google-Smtp-Source: ADUXVKLZnbHvW/QgVnHGh/e2ZaiBDF0JEZ7UijwJ5xe7ylevR1jp87uYkhI5fohR/oqe/AkmY1RX X-Received: by 2002:a65:66c6:: with SMTP id c6-v6mr4074362pgw.76.1528325700835; Wed, 06 Jun 2018 15:55:00 -0700 (PDT) ARC-Seal: i=1; a=rsa-sha256; t=1528325700; cv=none; d=google.com; s=arc-20160816; b=XJXEcZxwrHOvsvJYJmWFZPpkE2/R+cc/xJGymGW1YyfaJOSbVnKJeDL8cY5v4s7dxA UA8uXLd7FsbQX2nmt0b1jtSa/NzVDCG7ecOvnUVsHBI986/ZVLLt2jhUQOGgMobozTG4 LS3+D1xoH0N6egysdlA2YozPVReQCSyAIagvLx2vj4H0oGR5Oznim5HQRNlXs/ZfHJvV PKCwtvRPiSXzfemfnofk6exUEu3AMSqOe3Mj2NG1n3IB//Nu4hOhTaWf34cE3uP6szei 1XIkXSg673qf8weqYFbl3hdGcepLmbQ2jBgwcgdTcXbNNIAj1IpFbmvGtgZ6WnhupKZs KNPQ== ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=arc-20160816; h=list-id:precedence:sender:user-agent:in-reply-to :content-disposition:mime-version:references:message-id:subject:cc :to:from:date:arc-authentication-results; bh=99k87pO3dJHRsP8z+Y286qfdfYQocV4CtjVqeJPEfGM=; b=QgSwlnoPlKp492x7viEocGibos4QrJDqg6an3ZlTvkYd3BvGnjVBUyzgUGxwE3uvRm TagsvE8I7aE70dXM7F41TgtYnDdtPeKwdgfz9jt4IWTCNBR7foiT2wKzhkWLk1zmZKlC v3bWqlDycURbSQL2APaE2rIiQUCK5cwczk6TsLh4hVt9Dyg3RipG1qV6x9CGw1QU1E/s tpt1jCk0aI+e/3wpduvOE5zpK6Q613sCDTg0bv/tBbWohSPfHVG1PUn+eX+RnuVyS+DY 2jXJXv7lyOQgYRHlc74iKcA1pbTOl4NfwyUcoCnGvNj+AZ0G6UIzlLQw82WeEqzMjI1L D7PA== ARC-Authentication-Results: i=1; mx.google.com; spf=pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Return-Path: Received: from vger.kernel.org (vger.kernel.org. [209.132.180.67]) by mx.google.com with ESMTP id i61-v6si42283529plb.138.2018.06.06.15.54.46; Wed, 06 Jun 2018 15:55:00 -0700 (PDT) Received-SPF: pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) client-ip=209.132.180.67; Authentication-Results: mx.google.com; spf=pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752996AbeFFWx0 (ORCPT + 99 others); Wed, 6 Jun 2018 18:53:26 -0400 Received: from gate.crashing.org ([63.228.1.57]:42706 "EHLO gate.crashing.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752800AbeFFWxW (ORCPT ); Wed, 6 Jun 2018 18:53:22 -0400 Received: from gate.crashing.org (localhost.localdomain [127.0.0.1]) by gate.crashing.org (8.14.1/8.14.1) with ESMTP id w56Mr03w025534; Wed, 6 Jun 2018 17:53:01 -0500 Received: (from segher@localhost) by gate.crashing.org (8.14.1/8.14.1/Submit) id w56Mr08K025533; Wed, 6 Jun 2018 17:53:00 -0500 Date: Wed, 6 Jun 2018 17:52:59 -0500 From: Segher Boessenkool To: Dirk Gouders Cc: Masahiro Yamada , linux-kbuild@vger.kernel.org, linux-kernel@vger.kernel.org Subject: Re: [RFC 1/1] Emacs-like isearch for mconf. Message-ID: <20180606225259.GY17342@gate.crashing.org> References: <20180606215855.12889-1-dirk@gouders.net> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20180606215855.12889-1-dirk@gouders.net> User-Agent: Mutt/1.4.2.3i Sender: linux-kernel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Wed, Jun 06, 2018 at 11:58:55PM +0200, Dirk Gouders wrote: > @@ -332,6 +332,7 @@ int init_dialog(const char *backtitle) > > keypad(stdscr, TRUE); > cbreak(); > + raw(); /* Enable CTRL-sequences*/ Is that a good idea? You probably should mention it in the patch description, either way. Segher