diff options
author | Juanma Barranquero <lekktu@gmail.com> | 2010-10-12 04:45:24 +0200 |
---|---|---|
committer | Juanma Barranquero <lekktu@gmail.com> | 2010-10-12 04:45:24 +0200 |
commit | 57b6ae53514ccef149507cfd5f53d2e418810d30 (patch) | |
tree | 1ad77d99d99cd12c7c097871b981c772815106c2 /lisp | |
parent | b0b111c3762e01b5c8ade6841553f08aa6206267 (diff) | |
download | emacs-57b6ae53514ccef149507cfd5f53d2e418810d30.tar.gz |
lisp/net/telnet.el: "Fix" commented code.
Diffstat (limited to 'lisp')
-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 5d91245cdcb..25bf7db7612 100644 --- a/lisp/net/telnet.el +++ b/lisp/net/telnet.el @@ -64,7 +64,7 @@ LOGIN-NAME, which is optional, says what to log in as on that machine.") (defvar telnet-mode-map (let ((map (nconc (make-sparse-keymap) comint-mode-map))) (define-key map "\C-m" 'telnet-send-input) - ;; (define-key telnet-mode-map "\C-j" 'telnet-send-input) + ;; (define-key map "\C-j" 'telnet-send-input) (define-key map "\C-c\C-q" 'send-process-next-char) (define-key map "\C-c\C-c" 'telnet-interrupt-subjob) (define-key map "\C-c\C-z" 'telnet-c-z) |