aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGlenn Morris2007-08-03 17:09:01 +0000
committerGlenn Morris2007-08-03 17:09:01 +0000
commit866c361431989b399815c39db600d890c4ae064d (patch)
treeb66263655b5f78e366b387e4ba82395398012667
parenta7e2b28d564954a7134ba1cbe310538f851d6f48 (diff)
downloademacs-866c361431989b399815c39db600d890c4ae064d.tar.gz
emacs-866c361431989b399815c39db600d890c4ae064d.zip
(telnet-mode): Fix previous change.
-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 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
248sent to try to stop execution of a job on the remote host. 248sent to try to stop execution of a job on the remote host.
249Data is sent to the remote host when RET is typed." 249Data is sent to the remote host when RET is typed."
250 (set (make-local-variable 'comint-prompt-regexp) telnet-prompt-pattern) 250 (set (make-local-variable 'comint-prompt-regexp) telnet-prompt-pattern)
251 (setq comint-use-prompt-regexp t)) 251 (set (make-local-variable 'comint-use-prompt-regexp) t))
252 252
253;;;###autoload (add-hook 'same-window-regexps "\\*rsh-[^-]*\\*\\(\\|<[0-9]*>\\)") 253;;;###autoload (add-hook 'same-window-regexps "\\*rsh-[^-]*\\*\\(\\|<[0-9]*>\\)")
254 254