(undigestify-rmail-message): Better error messages.
[bpt/emacs.git] / lisp / vt-control.el
index 0b3a181..bd5d0c0 100644 (file)
@@ -1,10 +1,10 @@
 ;;; vt-control.el --- Common VTxxx control functions
 
-;; Copyright (C) 1993 Free Software Foundation, Inc.
+;; Copyright (C) 1993, 1994 Free Software Foundation, Inc.
 
 ;; Author: Rob Riepel <riepel@networking.stanford.edu>
 ;; Maintainer: Rob Riepel <riepel@networking.stanford.edu>
-;; Keywords: vt100
+;; Keywords: terminals
 
 ;; This file is part of GNU Emacs.
 
@@ -22,8 +22,6 @@
 ;; along with GNU Emacs; see the file COPYING.  If not, write to
 ;; the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
 
-;;; Revision: $Id: vt-control.el,v 2.2 1993/08/01 21:47:43 riepel Exp $
-
 ;;; Commentary:
 
 ;;  The functions contained in this file send various VT control codes
 ;;; Code:
 
 
-;;;  Revision Information
-
-(defconst vt-revision "$Revision: 2.2 $"
-  "Revision number of vt-control.")
-
-
 ;;;  Global variables
 
 (defvar vt-applications-keypad-p t
 (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.")))