diff options
author | Glenn Morris <rgm@gnu.org> | 2007-08-03 17:09:43 +0000 |
---|---|---|
committer | Glenn Morris <rgm@gnu.org> | 2007-08-03 17:09:43 +0000 |
commit | 14f7b89dd3d094e8969be187a0695d3c23f02941 (patch) | |
tree | c6ed50fbe13cbd50e417f5d3d8be06a808dece50 /lisp/net/telnet.el | |
parent | 5716cebdd05ad26a4c3aa57c8ebf2890d4b937f6 (diff) | |
download | emacs-14f7b89dd3d094e8969be187a0695d3c23f02941.tar.gz |
(telnet-mode): Fix previous change.
Diffstat (limited to 'lisp/net/telnet.el')
-rw-r--r-- | lisp/net/telnet.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/net/telnet.el b/lisp/net/telnet.el index 28f7d1ddb46..ef01c96ec8e 100644 --- a/lisp/net/telnet.el +++ b/lisp/net/telnet.el @@ -248,7 +248,7 @@ There is a variable ``telnet-interrupt-string'' which is the character sent to try to stop execution of a job on the remote host. Data is sent to the remote host when RET is typed." (set (make-local-variable 'comint-prompt-regexp) telnet-prompt-pattern) - (setq comint-use-prompt-regexp t)) + (set (make-local-variable 'comint-use-prompt-regexp) t)) ;;;###autoload (add-hook 'same-window-regexps "\\*rsh-[^-]*\\*\\(\\|<[0-9]*>\\)") |