diff options
| author | Stefan Monnier | 2012-05-11 08:40:43 -0400 |
|---|---|---|
| committer | Stefan Monnier | 2012-05-11 08:40:43 -0400 |
| commit | d9d1dfefe13b0f0a5f5402ab57bf8d22cd040486 (patch) | |
| tree | b57d89de47cd25fc45d59728ae833123921abab0 /lisp/net | |
| parent | 297834cdf39433f7bf8e63d6c784a3a2a9889b08 (diff) | |
| download | emacs-d9d1dfefe13b0f0a5f5402ab57bf8d22cd040486.tar.gz emacs-d9d1dfefe13b0f0a5f5402ab57bf8d22cd040486.zip | |
* net/rlogin.el (rlogin-mode-map): Fix last change.
Diffstat (limited to 'lisp/net')
| -rw-r--r-- | lisp/net/rlogin.el | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/lisp/net/rlogin.el b/lisp/net/rlogin.el index ac936ee1429..cef615dc320 100644 --- a/lisp/net/rlogin.el +++ b/lisp/net/rlogin.el | |||
| @@ -114,12 +114,12 @@ this variable is set from that." | |||
| 114 | (let ((map (if (consp shell-mode-map) | 114 | (let ((map (if (consp shell-mode-map) |
| 115 | (cons 'keymap shell-mode-map) | 115 | (cons 'keymap shell-mode-map) |
| 116 | (copy-keymap shell-mode-map)))) | 116 | (copy-keymap shell-mode-map)))) |
| 117 | (define-key rlogin-mode-map "\C-c\C-c" 'rlogin-send-Ctrl-C) | 117 | (define-key map "\C-c\C-c" 'rlogin-send-Ctrl-C) |
| 118 | (define-key rlogin-mode-map "\C-c\C-d" 'rlogin-send-Ctrl-D) | 118 | (define-key map "\C-c\C-d" 'rlogin-send-Ctrl-D) |
| 119 | (define-key rlogin-mode-map "\C-c\C-z" 'rlogin-send-Ctrl-Z) | 119 | (define-key map "\C-c\C-z" 'rlogin-send-Ctrl-Z) |
| 120 | (define-key rlogin-mode-map "\C-c\C-\\" 'rlogin-send-Ctrl-backslash) | 120 | (define-key map "\C-c\C-\\" 'rlogin-send-Ctrl-backslash) |
| 121 | (define-key rlogin-mode-map "\C-d" 'rlogin-delchar-or-send-Ctrl-D) | 121 | (define-key map "\C-d" 'rlogin-delchar-or-send-Ctrl-D) |
| 122 | (define-key rlogin-mode-map "\C-i" 'rlogin-tab-or-complete) | 122 | (define-key map "\C-i" 'rlogin-tab-or-complete) |
| 123 | map) | 123 | map) |
| 124 | "Keymap for `rlogin-mode'.") | 124 | "Keymap for `rlogin-mode'.") |
| 125 | 125 | ||