emacs-diffs
[Top][All Lists]
Advanced

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

[Emacs-diffs] /srv/bzr/emacs/trunk r110385: Fix previous read-passwd cha


From: Glenn Morris
Subject: [Emacs-diffs] /srv/bzr/emacs/trunk r110385: Fix previous read-passwd change
Date: Sat, 06 Oct 2012 09:59:01 -0700
User-agent: Bazaar (2.5.0)

------------------------------------------------------------
revno: 110385
committer: Glenn Morris <address@hidden>
branch nick: trunk
timestamp: Sat 2012-10-06 09:59:01 -0700
message:
  Fix previous read-passwd change
modified:
  lisp/subr.el
=== modified file 'lisp/subr.el'
--- a/lisp/subr.el      2012-10-06 02:47:26 +0000
+++ b/lisp/subr.el      2012-10-06 16:59:01 +0000
@@ -2183,8 +2183,9 @@
             (add-hook 'after-change-functions hide-chars-fun nil 'local))
         (unwind-protect
             (let ((enable-recursive-minibuffers t)
-                 (map minibuffer-local-map)
+                 (map (make-sparse-keymap))
                  result)
+             (set-keymap-parent map minibuffer-local-map)
              (define-key map "\C-u"    ; bug#12570
                (lambda () (interactive) (delete-minibuffer-contents)))
              (setq result


reply via email to

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