From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Kazu Yamamoto (=?iso-2022-jp?B?GyRCOzNLXE9CSScbKEI=?=) Newsgroups: gmane.emacs.devel Subject: two more bugs of read-passwd Date: Wed, 24 May 2006 12:44:51 +0900 (JST) Message-ID: <20060524.124451.213824533.kazu@iij.ad.jp> NNTP-Posting-Host: main.gmane.org Mime-Version: 1.0 Content-Type: Text/Plain; charset=us-ascii Content-Transfer-Encoding: 7bit X-Trace: sea.gmane.org 1148442322 30060 80.91.229.2 (24 May 2006 03:45:22 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Wed, 24 May 2006 03:45:22 +0000 (UTC) Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Wed May 24 05:45:17 2006 Return-path: Envelope-to: ged-emacs-devel@m.gmane.org Original-Received: from lists.gnu.org ([199.232.76.165]) by ciao.gmane.org with esmtp (Exim 4.43) id 1FikJ1-0002ac-J0 for ged-emacs-devel@m.gmane.org; Wed, 24 May 2006 05:45:08 +0200 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1FikJ0-0004IM-Pm for ged-emacs-devel@m.gmane.org; Tue, 23 May 2006 23:45:06 -0400 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1FikIq-0004I8-EY for emacs-devel@gnu.org; Tue, 23 May 2006 23:44:56 -0400 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1FikIn-0004Ho-Ld for emacs-devel@gnu.org; Tue, 23 May 2006 23:44:55 -0400 Original-Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1FikIn-0004Hl-Jl for emacs-devel@gnu.org; Tue, 23 May 2006 23:44:53 -0400 Original-Received: from [210.138.20.174] (helo=otm-mgo00.iij.ad.jp) by monty-python.gnu.org with esmtp (Exim 4.52) id 1FikN9-00041o-Bx for emacs-devel@gnu.org; Tue, 23 May 2006 23:49:23 -0400 Original-Received: OTM-MO(otm-mgo00) id k4O3ipRi071230; Wed, 24 May 2006 12:44:51 +0900 (JST) DomainKey-Signature: a=rsa-sha1; s=omgo; d=iij.ad.jp; c=nofws; q=dns; h=date:message-id:to:from:x-mailer:mime-version: content-type:content-transfer-encoding; b=Utt2jqNELR94G9B/Jlcd0xZ/WIFjiGRriqMOPSIFLw6lLYaFsQpKDSp4Ejfb8f8fc +Pefsqi8AFxvGul+E5hOA== Original-Received: OTM-MIX(otm-mix01) id k4O3ipHZ032649; Wed, 24 May 2006 12:44:51 +0900 (JST) Original-Received: from localhost (h143n190.iij.ad.jp [192.168.190.143]) by rsmtp.iij.ad.jp (OTM-MR/rsmtp) id k4O3ipJX000593 (version=TLSv1/SSLv3 cipher=EDH-RSA-DES-CBC3-SHA bits=168 verify=NOT) for ; Wed, 24 May 2006 12:44:51 +0900 (JST) Original-To: emacs-devel@gnu.org X-Mailer: Mew version 5.0.52 on Emacs 22.0.50 / Mule 5.0 (SAKAKI) 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:55178 Archived-At: Hello, Two more bugs of read-paswd of CVS Emacs: 1) The following code should return "quit case" if a user type C-g. But it just quits. (condition-case nil (read-passwd "password: ") (quit "quit case")) 2) The following code should return nil if a user type C-g. But it just quits. (let ((inhibit-quit t)) (read-passwd "password: ")) --Kazu