aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRomain Francoise2006-04-12 19:40:56 +0000
committerRomain Francoise2006-04-12 19:40:56 +0000
commit7c447c3f8d225ef0c4f14ffacc468db9a405e4e0 (patch)
tree2d4562a317b139f062f6e7c7d83f8d16900615a1
parentd8523190ca4f064fa819cfcd053d204b2b8d0b60 (diff)
downloademacs-7c447c3f8d225ef0c4f14ffacc468db9a405e4e0.tar.gz
emacs-7c447c3f8d225ef0c4f14ffacc468db9a405e4e0.zip
(read-passwd): Bind `message-log-max' to nil.
-rw-r--r--lisp/ChangeLog4
-rw-r--r--lisp/subr.el3
2 files changed, 6 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 32b8304044f..de917d4e1e6 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,7 @@
12006-04-12 Romain Francoise <romain@orebokech.com>
2
3 * subr.el (read-passwd): Bind `message-log-max' to nil.
4
12006-04-12 Stefan Monnier <monnier@iro.umontreal.ca> 52006-04-12 Stefan Monnier <monnier@iro.umontreal.ca>
2 6
3 * progmodes/perl-mode.el (perl-indent-new-calculate): 7 * progmodes/perl-mode.el (perl-indent-new-calculate):
diff --git a/lisp/subr.el b/lisp/subr.el
index 9aba6195816..4a9172e007a 100644
--- a/lisp/subr.el
+++ b/lisp/subr.el
@@ -1540,7 +1540,8 @@ by doing (clear-string STRING)."
1540 (let ((pass nil) 1540 (let ((pass nil)
1541 (c 0) 1541 (c 0)
1542 (echo-keystrokes 0) 1542 (echo-keystrokes 0)
1543 (cursor-in-echo-area t)) 1543 (cursor-in-echo-area t)
1544 (message-log-max nil))
1544 (add-text-properties 0 (length prompt) 1545 (add-text-properties 0 (length prompt)
1545 minibuffer-prompt-properties prompt) 1546 minibuffer-prompt-properties prompt)
1546 (while (progn (message "%s%s" 1547 (while (progn (message "%s%s"