]> git.eshelyaron.com Git - emacs.git/commitdiff
(vt-keypad-on, vt-keypad-off): Updated codes sent
authorRichard M. Stallman <rms@gnu.org>
Thu, 22 Jun 1995 20:28:55 +0000 (20:28 +0000)
committerRichard M. Stallman <rms@gnu.org>
Thu, 22 Jun 1995 20:28:55 +0000 (20:28 +0000)
to terminal to eliminate some garbage that made NCSA telnet crash.

lisp/vt-control.el

index acb6141c77afeb6c3d2412f8e2a8c7e7eb687413..bd5d0c08473e5ee6f5d066d602a1767a02f8f1ad 100644 (file)
 (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.")))