diff options
author | Stefan Monnier <monnier@iro.umontreal.ca> | 2018-07-18 10:23:20 -0400 |
---|---|---|
committer | Stefan Monnier <monnier@iro.umontreal.ca> | 2018-07-18 10:23:20 -0400 |
commit | 04a32fa60bead4359bc9353af67f26958c795593 (patch) | |
tree | 4252eb9289456b71892afc059162f0a04930ab72 /lisp/net/rlogin.el | |
parent | 343b29381cc53d53b1a2c1fdfacf0f5c4761f505 (diff) | |
download | emacs-04a32fa60bead4359bc9353af67f26958c795593.tar.gz emacs-04a32fa60bead4359bc9353af67f26958c795593.tar.bz2 emacs-04a32fa60bead4359bc9353af67f26958c795593.zip |
* lisp/comint.el: Clean up namespace
(shell-strip-ctrl-m): Mark as obsolete.
(comint-send-invisible): Rename from `send-invisible`.
(send-invisible): Make it an obsolete alias.
* lisp/net/rlogin.el: Adjust accordingly; Use lexical-binding.
* lisp/shell.el: Adjust accordingly.
Diffstat (limited to 'lisp/net/rlogin.el')
-rw-r--r-- | lisp/net/rlogin.el | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/lisp/net/rlogin.el b/lisp/net/rlogin.el index 3bfc4d7f356..015e04f4075 100644 --- a/lisp/net/rlogin.el +++ b/lisp/net/rlogin.el @@ -1,4 +1,4 @@ -;;; rlogin.el --- remote login interface +;;; rlogin.el --- remote login interface -*- lexical-binding:t -*- ;; Copyright (C) 1992-1995, 1997-1998, 2001-2018 Free Software ;; Foundation, Inc. @@ -30,9 +30,9 @@ ;; tracking and the sending of some special characters. ;; If you wish for rlogin mode to prompt you in the minibuffer for -;; passwords when a password prompt appears, just enter m-x send-invisible -;; and type in your line, or add `comint-watch-for-password-prompt' to -;; `comint-output-filter-functions'. +;; passwords when a password prompt appears, just enter +;; M-x comint-send-invisible and type in your line (or tweak +;; `comint-password-prompt-regexp' to match your password prompt). ;;; Code: |