From: Richard M. Stallman Date: Thu, 22 Jun 1995 20:28:55 +0000 (+0000) Subject: (vt-keypad-on, vt-keypad-off): Updated codes sent X-Git-Tag: emacs-19.34~3497 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=c96c7ed95f4b40ad4ff159079cb4bc0106eda431;p=emacs.git (vt-keypad-on, vt-keypad-off): Updated codes sent to terminal to eliminate some garbage that made NCSA telnet crash. --- 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.")))