From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Stefan Monnier Newsgroups: gmane.emacs.devel Subject: Re: Emacs 23.1 flushes stdin on startup Date: Thu, 06 Aug 2009 12:33:47 -0400 Message-ID: References: <4A789738.8090008@roaringpenguin.com> <87r5vquzrc.fsf@jumptrading.com> NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: ger.gmane.org 1249576448 9681 80.91.229.12 (6 Aug 2009 16:34:08 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Thu, 6 Aug 2009 16:34:08 +0000 (UTC) Cc: Emacs Development To: Ted Zlatanov Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Thu Aug 06 18:34:01 2009 Return-path: Envelope-to: ged-emacs-devel@m.gmane.org Original-Received: from lists.gnu.org ([199.232.76.165]) by lo.gmane.org with esmtp (Exim 4.50) id 1MZ5uh-00037r-Jo for ged-emacs-devel@m.gmane.org; Thu, 06 Aug 2009 18:34:00 +0200 Original-Received: from localhost ([127.0.0.1]:33360 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1MZ5ug-0002LE-4l for ged-emacs-devel@m.gmane.org; Thu, 06 Aug 2009 12:33:58 -0400 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1MZ5uc-0002L9-7N for emacs-devel@gnu.org; Thu, 06 Aug 2009 12:33:54 -0400 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1MZ5uW-0002Kx-RD for emacs-devel@gnu.org; Thu, 06 Aug 2009 12:33:52 -0400 Original-Received: from [199.232.76.173] (port=46733 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1MZ5uW-0002Ku-LX for emacs-devel@gnu.org; Thu, 06 Aug 2009 12:33:48 -0400 Original-Received: from ironport2-out.teksavvy.com ([206.248.154.182]:27132) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1MZ5uW-0002Ya-AN for emacs-devel@gnu.org; Thu, 06 Aug 2009 12:33:48 -0400 X-IronPort-Anti-Spam-Filtered: true X-IronPort-Anti-Spam-Result: Ar4EAJyiekpFxL8W/2dsb2JhbACBUtBRhBgFhzM X-IronPort-AV: E=Sophos;i="4.43,334,1246852800"; d="scan'208";a="43105154" Original-Received: from 69-196-191-22.dsl.teksavvy.com (HELO pastel.home) ([69.196.191.22]) by ironport2-out.teksavvy.com with ESMTP; 06 Aug 2009 12:33:47 -0400 Original-Received: by pastel.home (Postfix, from userid 20848) id 90FE57F4F; Thu, 6 Aug 2009 12:33:47 -0400 (EDT) In-Reply-To: <87r5vquzrc.fsf@jumptrading.com> (Ted Zlatanov's message of "Wed, 5 Aug 2009 09:00:23 -0500") User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/23.1.50 (gnu/linux) X-detected-operating-system: by monty-python.gnu.org: Genre and OS details not recognized. X-BeenThere: emacs-devel@gnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "Emacs development discussions." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Original-Sender: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Errors-To: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.devel:113742 Archived-At: > How about adding a variable xterm-modify-other-keys-supported with > values t, nil, and 'check? It would make the startup slightly > faster, too. Sounds OK. > ! (when xterm-modify-other-keys-supported > ! (cond > ! ((eq xterm-modify-other-keys-supported 'check) Please merge the when and the cond into a single cond (which will give meaning to this `cond', since as it stands it only has two arms and could hence as well use `if'). Stefan