summaryrefslogtreecommitdiff
path: root/lisp/net/telnet.el
diff options
context:
space:
mode:
authorStefan Kangas <stefankangas@gmail.com>2020-07-31 06:02:30 +0200
committerStefan Kangas <stefankangas@gmail.com>2020-07-31 06:02:30 +0200
commit7899fa43095f63845d471398c5229147d6f6c100 (patch)
treecd2d594c8ea426e229d04991eb0670d25655d35b /lisp/net/telnet.el
parentf7a916a618955d38b1ee08a78b309fb97f5250cc (diff)
downloademacs-7899fa43095f63845d471398c5229147d6f6c100.tar.gz
Declare some ancient compat aliases obsolete (Bug#41328)
* lisp/comint.el (comint-read-noecho): * lisp/emacs-lisp/edebug.el (edebug-all-defuns): * lisp/man.el (manual-entry): * lisp/vc/log-edit.el (vc-log-mode-map, vc-log-entry-mode): Declare ancient backwards-compatibility aliases and functions obsolete. The oldest in this list was added in 1992, and the most recent in 2004. * lisp/net/telnet.el (telnet-initial-filter): Don't use `comint-read-noecho'.
Diffstat (limited to 'lisp/net/telnet.el')
-rw-r--r--lisp/net/telnet.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/net/telnet.el b/lisp/net/telnet.el
index e8c0c1bbdf4..29c415e6a65 100644
--- a/lisp/net/telnet.el
+++ b/lisp/net/telnet.el
@@ -149,7 +149,7 @@ rejecting one login and prompting again for a username and password.")
((string-match "passw" string)
(telnet-filter proc string)
(setq telnet-count 0)
- (process-send-string proc (concat (comint-read-noecho "Password: " t)
+ (process-send-string proc (concat (read-passwd "Password: ")
telnet-new-line))
(clear-this-command-keys))
(t (telnet-check-software-type-initialize string)