emacs-diffs
[Top][All Lists]
Advanced

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

[Emacs-diffs] Changes to emacs/lisp/subr.el [emacs-unicode-2]


From: Miles Bader
Subject: [Emacs-diffs] Changes to emacs/lisp/subr.el [emacs-unicode-2]
Date: Thu, 04 Nov 2004 04:07:03 -0500

Index: emacs/lisp/subr.el
diff -c emacs/lisp/subr.el:1.360.2.14 emacs/lisp/subr.el:1.360.2.15
*** emacs/lisp/subr.el:1.360.2.14       Wed Oct 27 05:41:58 2004
--- emacs/lisp/subr.el  Thu Nov  4 08:55:35 2004
***************
*** 817,822 ****
--- 817,826 ----
  (make-obsolete-variable 'post-command-idle-delay
    "use timers instead, with `run-with-idle-timer'." "before 19.34")
  
+ (defvaralias 'x-lost-selection-hooks 'x-lost-selection-functions)
+ (make-obsolete-variable 'x-lost-selection-hooks 'x-lost-selection-functions 
"21.4")
+ (defvaralias 'x-sent-selection-hooks 'x-sent-selection-functions)
+ (make-obsolete-variable 'x-sent-selection-hooks 'x-sent-selection-functions 
"21.4")
  
  ;;;; Alternate names for functions - these are not being phased out.
  
***************
*** 1211,1216 ****
--- 1215,1275 ----
        (setq first nil))
      code))
  
+ (defun read-passwd (prompt &optional confirm default)
+   "Read a password, prompting with PROMPT, and return it.
+ If optional CONFIRM is non-nil, read the password twice to make sure.
+ Optional DEFAULT is a default password to use instead of empty input.
+ 
+ This function echoes `.' for each character that the user types.
+ The user ends with RET, LFD, or ESC.  DEL or C-h rubs out.  C-u kills line.
+ C-g quits; if `inhibit-quit' was non-nil around this function,
+ then it returns nil if the user types C-g.
+ 
+ Once the caller uses the password, it can erase the password
+ by doing (clear-string STRING)."
+   (with-local-quit
+     (if confirm
+       (let (success)
+         (while (not success)
+           (let ((first (read-passwd prompt nil default))
+                 (second (read-passwd "Confirm password: " nil default)))
+             (if (equal first second)
+                 (progn
+                   (and (arrayp second) (clear-string second))
+                   (setq success first))
+               (and (arrayp first) (clear-string first))
+               (and (arrayp second) (clear-string second))
+               (message "Password not repeated accurately; please start over")
+               (sit-for 1))))
+         success)
+       (let ((pass nil)
+           (c 0)
+           (echo-keystrokes 0)
+           (cursor-in-echo-area t))
+       (while (progn (message "%s%s"
+                              prompt
+                              (make-string (length pass) ?.))
+                     (setq c (read-char-exclusive nil t))
+                     (and (/= c ?\r) (/= c ?\n) (/= c ?\e)))
+         (clear-this-command-keys)
+         (if (= c ?\C-u)
+             (progn
+               (and (arrayp pass) (clear-string pass))
+               (setq pass ""))
+           (if (and (/= c ?\b) (/= c ?\177))
+               (let* ((new-char (char-to-string c))
+                      (new-pass (concat pass new-char)))
+                 (and (arrayp pass) (clear-string pass))
+                 (clear-string new-char)
+                 (setq c ?\0)
+                 (setq pass new-pass))
+             (if (> (length pass) 0)
+                 (let ((new-pass (substring pass 0 -1)))
+                   (and (arrayp pass) (clear-string pass))
+                   (setq pass new-pass))))))
+       (message nil)
+       (or pass default "")))))
+ 
  ;; This should be used by `call-interactively' for `n' specs.
  (defun read-number (prompt &optional default)
    (let ((n nil))




reply via email to

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