emacs-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

two more bugs of read-passwd


From: 山本和彦
Subject: two more bugs of read-passwd
Date: Wed, 24 May 2006 12:44:51 +0900 (JST)

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




reply via email to

[Prev in Thread] Current Thread [Next in Thread]