summaryrefslogtreecommitdiff
path: root/lisp/vt-control.el
diff options
context:
space:
mode:
authorRichard M. Stallman <rms@gnu.org>1995-06-22 20:28:55 +0000
committerRichard M. Stallman <rms@gnu.org>1995-06-22 20:28:55 +0000
commitd6003642f7526641af811150402213ab44445f2b (patch)
tree3ddd99ce04acd2240590278ca1db2a10b4634d16 /lisp/vt-control.el
parent2eab1d2619e9fac6f7f7e4c997053f79be48a79e (diff)
downloademacs-d6003642f7526641af811150402213ab44445f2b.tar.gz
(vt-keypad-on, vt-keypad-off): Updated codes sent
to terminal to eliminate some garbage that made NCSA telnet crash.
Diffstat (limited to 'lisp/vt-control.el')
-rw-r--r--lisp/vt-control.el4
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/vt-control.el b/lisp/vt-control.el
index acb6141c77a..bd5d0c08473 100644
--- a/lisp/vt-control.el
+++ b/lisp/vt-control.el
@@ -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.")))