changeset 12362:03e8afdeabb3

(vt-keypad-on, vt-keypad-off): Updated codes sent to terminal to eliminate some garbage that made NCSA telnet crash.
author Richard M. Stallman <rms@gnu.org>
date Thu, 22 Jun 1995 20:28:55 +0000
parents 5b1c79dd5063
children cc16f6c558b4
files lisp/vt-control.el
diffstat 1 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/lisp/vt-control.el	Thu Jun 22 19:25:20 1995 +0000
+++ b/lisp/vt-control.el	Thu Jun 22 20:28:55 1995 +0000
@@ -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.")))