mirror of
git://git.sv.gnu.org/emacs.git
synced 2025-12-15 10:30:25 -08:00
(vt-keypad-on, vt-keypad-off): Updated codes sent
to terminal to eliminate some garbage that made NCSA telnet crash.
This commit is contained in:
parent
37a985474f
commit
c96c7ed95f
1 changed files with 2 additions and 2 deletions
|
|
@ -86,14 +86,14 @@
|
|||
(defun vt-keypad-on (&optional tell)
|
||||
"Turn on the VT applications keypad."
|
||||
(interactive)
|
||||
(send-string-to-terminal "\e[\e=")
|
||||
(send-string-to-terminal "\e=")
|
||||
(setq vt-applications-keypad-p t)
|
||||
(if (or tell (interactive-p)) (message "Applications keypad enabled.")))
|
||||
|
||||
(defun vt-keypad-off (&optional tell)
|
||||
"Turn off the VT applications keypad."
|
||||
(interactive "p")
|
||||
(send-string-to-terminal "\e[\e>")
|
||||
(send-string-to-terminal "\e>")
|
||||
(setq vt-applications-keypad-p nil)
|
||||
(if (or tell (interactive-p)) (message "Applications keypad disabled.")))
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue