X-Git-Url: https://code.delx.au/gnu-emacs/blobdiff_plain/b7f66977bea896036f61b910814d33dda7e18f37..db8d59365b5ccdca367ace2d4df5b8a2242e5765:/lisp/vt-control.el diff --git a/lisp/vt-control.el b/lisp/vt-control.el index 509365bf4a..d5bc90044b 100644 --- a/lisp/vt-control.el +++ b/lisp/vt-control.el @@ -1,6 +1,7 @@ ;;; vt-control.el --- Common VTxxx control functions -;; Copyright (C) 1993 Free Software Foundation, Inc. +;; Copyright (C) 1993, 1994, 2002, 2003, +;; 2004, 2005, 2006 Free Software Foundation, Inc. ;; Author: Rob Riepel ;; Maintainer: Rob Riepel @@ -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: @@ -50,12 +52,6 @@ ;;; Code: -;;; Revision Information - -(defconst vt-revision "$Revision: 1.3 $" - "Revision number of vt-control.") - - ;;; Global variables (defvar vt-applications-keypad-p t @@ -71,14 +67,14 @@ "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 @@ -92,14 +88,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."))) @@ -109,4 +105,7 @@ (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