Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
d9d1dfef
Commit
d9d1dfef
authored
May 11, 2012
by
Stefan Monnier
Browse files
* net/rlogin.el (rlogin-mode-map): Fix last change.
parent
297834cd
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
10 additions
and
6 deletions
+10
-6
lisp/ChangeLog
lisp/ChangeLog
+4
-0
lisp/net/rlogin.el
lisp/net/rlogin.el
+6
-6
No files found.
lisp/ChangeLog
View file @
d9d1dfef
2012-05-11 Stefan Monnier <monnier@iro.umontreal.ca>
* net/rlogin.el (rlogin-mode-map): Fix last change.
2012-05-09 Jason L. Wright <jason.wright@inl.gov> (tiny change)
* mail/smtpmail.el (smtpmail-send-command): Send the command and
...
...
lisp/net/rlogin.el
View file @
d9d1dfef
...
...
@@ -114,12 +114,12 @@ this variable is set from that."
(
let
((
map
(
if
(
consp
shell-mode-map
)
(
cons
'keymap
shell-mode-map
)
(
copy-keymap
shell-mode-map
))))
(
define-key
rlogin-mode-
map
"\C-c\C-c"
'rlogin-send-Ctrl-C
)
(
define-key
rlogin-mode-
map
"\C-c\C-d"
'rlogin-send-Ctrl-D
)
(
define-key
rlogin-mode-
map
"\C-c\C-z"
'rlogin-send-Ctrl-Z
)
(
define-key
rlogin-mode-
map
"\C-c\C-\\"
'rlogin-send-Ctrl-backslash
)
(
define-key
rlogin-mode-
map
"\C-d"
'rlogin-delchar-or-send-Ctrl-D
)
(
define-key
rlogin-mode-
map
"\C-i"
'rlogin-tab-or-complete
)
(
define-key
map
"\C-c\C-c"
'rlogin-send-Ctrl-C
)
(
define-key
map
"\C-c\C-d"
'rlogin-send-Ctrl-D
)
(
define-key
map
"\C-c\C-z"
'rlogin-send-Ctrl-Z
)
(
define-key
map
"\C-c\C-\\"
'rlogin-send-Ctrl-backslash
)
(
define-key
map
"\C-d"
'rlogin-delchar-or-send-Ctrl-D
)
(
define-key
map
"\C-i"
'rlogin-tab-or-complete
)
map
)
"Keymap for `rlogin-mode'."
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment