]> code.delx.au - gnu-emacs/blobdiff - lisp/term/vt100.el
Merged from miles@gnu.org--gnu-2005 (patch 677)
[gnu-emacs] / lisp / term / vt100.el
index c9d4e5db104623976c8107b81ff3f95983ff30e4..9822bd6e5a22e24181aeb4b7b5f8fd65cbbdb203 100644 (file)
@@ -1,62 +1,61 @@
-;;;; Define VT100 function key escape sequences in function-key-map.
-
-\f
-;;; CSI sequences - those that start with "\e[".
-(define-prefix-command 'vt100-CSI-prefix 'vt100-CSI-map)
-(define-key function-key-map "\e[" 'vt100-CSI-prefix)
-
-(define-key vt100-CSI-map "A" [up])
-(define-key vt100-CSI-map "B" [down])
-(define-key vt100-CSI-map "C" [right])
-(define-key vt100-CSI-map "D" [left])
-
-(defun enable-arrow-keys ()
-  "Enable the use of the VT100 arrow keys for cursor motion.
-Because of the nature of the VT100, this unavoidably breaks
-the standard Emacs command ESC [; therefore, it is not done by default,
-but only if you give this command."
-  (interactive)
-  (global-unset-key "\e["))
-
-
-\f
-;;; SS3 sequences - those that start with "\eO".
-(define-prefix-command 'vt100-SS3-prefix 'vt100-SS3-map)
-(define-key function-key-map "\eO" 'vt100-SS3-prefix)
-
-(define-key vt100-SS3-map "A" [up])
-(define-key vt100-SS3-map "B" [down])          ; down-arrow
-(define-key vt100-SS3-map "C" [right])         ; right-arrow
-(define-key vt100-SS3-map "D" [left])          ; left-arrow
-(define-key vt100-SS3-map "M" [kp-enter])       ; Enter
-(define-key vt100-SS3-map "P" [kp-f1])         ; PF1  
-(define-key vt100-SS3-map "Q" [kp-f2])         ; PF2  
-(define-key vt100-SS3-map "R" [kp-f3])         ; PF3  
-(define-key vt100-SS3-map "S" [kp-f4])         ; PF4  
-(define-key vt100-SS3-map "l" [kp-separator])   ; ,
-(define-key vt100-SS3-map "m" [kp-subtract])    ; -
-(define-key vt100-SS3-map "n" [kp-period])     ; .
-(define-key vt100-SS3-map "p" [kp-0])          ; 0
-(define-key vt100-SS3-map "q" [kp-1])          ; 1
-(define-key vt100-SS3-map "r" [kp-2])          ; 2
-(define-key vt100-SS3-map "s" [kp-3])          ; 3
-(define-key vt100-SS3-map "t" [kp-4])          ; 4
-(define-key vt100-SS3-map "u" [kp-5])          ; 5
-(define-key vt100-SS3-map "v" [kp-6])          ; 6
-(define-key vt100-SS3-map "w" [kp-7])          ; 7
-(define-key vt100-SS3-map "x" [kp-8])          ; 8
-(define-key vt100-SS3-map "y" [kp-9])          ; 9
-                                                  
-\f
+;;; vt100.el --- define VT100 function key sequences in function-key-map
+
+;; Copyright (C) 1989, 1993, 2002, 2003, 2004,
+;;   2005 Free Software Foundation, Inc.
+
+;; Author: FSF
+;; Keywords: terminals
+
+;; This file is part of GNU Emacs.
+
+;; GNU Emacs is free software; you can redistribute it and/or modify
+;; it under the terms of the GNU General Public License as published by
+;; the Free Software Foundation; either version 2, or (at your option)
+;; any later version.
+
+;; GNU Emacs is distributed in the hope that it will be useful,
+;; but WITHOUT ANY WARRANTY; without even the implied warranty of
+;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+;; 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, Inc., 51 Franklin Street, Fifth Floor,
+;; Boston, MA 02110-1301, USA.
+
+;;; Commentary:
+
+;; Uses the Emacs 19 terminal initialization features --- won't work with 18.
+
+;; Handles all VT100 clones, including the Apollo terminal.  Also handles
+;; the VT200 --- its PF- and arrow- keys are different, but all those
+;; are really set up by the terminal initialization code, which mines them
+;; out of termcap.  This package is here to define the keypad comma, dash
+;; and period (which aren't in termcap's repertoire) and the function for
+;; changing from 80 to 132 columns & vv.
+
+;;; Code:
+
+;; Set up function-key-map entries that termcap and terminfo don't know.
+
+(defun terminal-init-vt100 ()
+  "Terminal initialization function for vt100."
+  (terminal-init-lk201))
+
 ;;; Controlling the screen width.
-(defconst vt100-wide-mode (= (screen-width) 132)
+(defvar vt100-wide-mode (= (frame-width) 132)
   "t if vt100 is in 132-column mode.")
 
 (defun vt100-wide-mode (&optional arg)
-  "Toggle 132/80 column mode for vt100s."
+  "Toggle 132/80 column mode for vt100s.
+With positive argument, switch to 132-column mode.
+With negative argument, switch to 80-column mode."
  (interactive "P")
- (setq vt100-wide-mode 
+ (setq vt100-wide-mode
        (if (null arg) (not vt100-wide-mode)
          (> (prefix-numeric-value arg) 0)))
  (send-string-to-terminal (if vt100-wide-mode "\e[?3h" "\e[?3l"))
- (set-screen-width (if vt100-wide-mode 132 80)))
+ (set-frame-width terminal-frame (if vt100-wide-mode 132 80)))
+
+;;; arch-tag: 9ff41f24-a7c9-4dee-9cf2-fbaa951eb840
+;;; vt100.el ends here