Update years in copyright notice; nfc.
[bpt/emacs.git] / lisp / vt-control.el
index acb6141..d5bc900 100644 (file)
@@ -1,6 +1,7 @@
 ;;; vt-control.el --- Common VTxxx control functions
 
-;; Copyright (C) 1993, 1994 Free Software Foundation, Inc.
+;; Copyright (C) 1993, 1994, 2002, 2003,
+;;   2004, 2005, 2006 Free Software Foundation, Inc.
 
 ;; Author: Rob Riepel <riepel@networking.stanford.edu>
 ;; Maintainer: Rob Riepel <riepel@networking.stanford.edu>
@@ -19,8 +20,9 @@
 ;; GNU General Public License for more details.
 
 ;; You should have received a copy of the GNU General Public License
-;; along with GNU Emacs; see the file COPYING.  If not, write to
-;; the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
+;; along with GNU Emacs; see the file COPYING.  If not, write to the
+;; Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
+;; Boston, MA 02110-1301, USA.
 
 ;;; Commentary:
 
   "Set the screen 132 characters wide."
   (interactive)
   (send-string-to-terminal "\e[?3h")
-  (set-screen-width 132)
+  (set-frame-width (selected-frame) 132)
   (setq vt-wide-p t))
 
 (defun vt-narrow nil
   "Set the screen 80 characters wide."
   (interactive)
   (send-string-to-terminal "\e[?3l")
-  (set-screen-width 80)
+  (set-frame-width (selected-frame) 80)
   (setq vt-wide-p nil))
 
 (defun vt-toggle-screen nil
 (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.")))
 
   (if vt-applications-keypad-p (vt-keypad-off (interactive-p))
     (vt-keypad-on (interactive-p))))
 
+(provide 'vt-control)
+
+;;; arch-tag: d4fed1bf-2524-4ba1-a4fe-86bca3d928a2
 ;;; vt-control.el ends here