diff options
| author | Eli Zaretskii | 2005-11-19 12:49:59 +0000 |
|---|---|---|
| committer | Eli Zaretskii | 2005-11-19 12:49:59 +0000 |
| commit | a4b1de6e8d435b66bcb5217642ed80404c7d04f9 (patch) | |
| tree | 2e8c20943300a464ba577d052401a42ac894fc42 | |
| parent | e27de09e24254facfdf6c75f30ae21749848a742 (diff) | |
| download | emacs-a4b1de6e8d435b66bcb5217642ed80404c7d04f9.tar.gz emacs-a4b1de6e8d435b66bcb5217642ed80404c7d04f9.zip | |
(read-passwd): Fontify the prompt as we do with other prompts.
| -rw-r--r-- | lisp/ChangeLog | 5 | ||||
| -rw-r--r-- | lisp/subr.el | 2 |
2 files changed, 7 insertions, 0 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 304628cef5c..04d341fbfd9 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,8 @@ | |||
| 1 | 2005-11-19 Michael Cadilhac <michael.cadilhac@lrde.org> (tiny change) | ||
| 2 | |||
| 3 | * subr.el (read-passwd): Fontify the prompt as we do with other | ||
| 4 | prompts. | ||
| 5 | |||
| 1 | 2005-11-19 Ryan Yeske <rcyeske@gmail.com> | 6 | 2005-11-19 Ryan Yeske <rcyeske@gmail.com> |
| 2 | 7 | ||
| 3 | * ffap.el (ffap-menu-rescan): Use inhibit-read-only instead of | 8 | * ffap.el (ffap-menu-rescan): Use inhibit-read-only instead of |
diff --git a/lisp/subr.el b/lisp/subr.el index 26a741f91e4..778f52abff4 100644 --- a/lisp/subr.el +++ b/lisp/subr.el | |||
| @@ -1541,6 +1541,8 @@ by doing (clear-string STRING)." | |||
| 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 | (add-text-properties 0 (length prompt) | ||
| 1545 | minibuffer-prompt-properties prompt) | ||
| 1544 | (while (progn (message "%s%s" | 1546 | (while (progn (message "%s%s" |
| 1545 | prompt | 1547 | prompt |
| 1546 | (make-string (length pass) ?.)) | 1548 | (make-string (length pass) ?.)) |