Mercurial > emacs
annotate lisp/vt-control.el @ 20892:18f3cb26243f before-miles-orphaned-changes gcc-2_8_1-980401 gcc-2_8_1-980407 gcc-2_8_1-980412 gcc-2_8_1-980413 gcc-2_8_1-RELEASE gcc_2_8_1-980315 libc-980214 libc-980215 libc-980216 libc-980217 libc-980218 libc-980219 libc-980220 libc-980221 libc-980222 libc-980223 libc-980224 libc-980225 libc-980226 libc-980227 libc-980228 libc-980301 libc-980302 libc-980303 libc-980304 libc-980306 libc-980307 libc-980308 libc-980309 libc-980310 libc-980311 libc-980312 libc-980313 libc-980314 libc-980315 libc-980316 libc-980317 libc-980318 libc-980319 libc-980320 libc-980321 libc-980322 libc-980323 libc-980324 libc-980325 libc-980326 libc-980327 libc-980328 libc-980329 libc-980330 libc-980331 libc-980401 libc-980402 libc-980403 libc-980404 libc-980405 libc-980406 libc-980407 libc-980408 libc-980409 libc-980410 libc-980411 libc-980412 libc-980413 libc-980414 libc-980428 libc-980429 libc-980430 libc-980501 libc-980502 libc-980503 libc-980504 libc-980505 libc-980506 libc-980507 libc-980508 libc-980509 libc-980510 libc-980512 libc-980513 libc-980514 libc-980515 libc-980516 libc-980517 libc-980518 libc-980519 libc-980520 libc-980521 libc-980522 libc-980523 libc-980524 libc-980525 libc-980526 libc-980527 libc-980528 libc-980529 libc-980530 libc-980531 libc-980601 libc-980602 libc-980603 libc-980604 libc-980605 libc-980606 libc-980607 libc-980608 libc-980609 libc-980610 libc-980611 libc-980612 libc-980613
Add PentiumII (i786). Add '7' to all i[3456] entries.
Add AMD and Cyrix names for P5 and P6.
author | Richard Kenner <kenner@gnu.org> |
---|---|
date | Fri, 13 Feb 1998 12:16:46 +0000 |
parents | 11218164bc54 |
children | dc54396f2b69 |
rev | line source |
---|---|
4421 | 1 ;;; vt-control.el --- Common VTxxx control functions |
2 | |
7979
6244e78f5acd
(vt-revision): Variable deleted.
Richard M. Stallman <rms@gnu.org>
parents:
5140
diff
changeset
|
3 ;; Copyright (C) 1993, 1994 Free Software Foundation, Inc. |
4421 | 4 |
5 ;; Author: Rob Riepel <riepel@networking.stanford.edu> | |
6 ;; Maintainer: Rob Riepel <riepel@networking.stanford.edu> | |
5140 | 7 ;; Keywords: terminals |
4421 | 8 |
4450 | 9 ;; This file is part of GNU Emacs. |
10 | |
11 ;; GNU Emacs is free software; you can redistribute it and/or modify | |
12 ;; it under the terms of the GNU General Public License as published by | |
13 ;; the Free Software Foundation; either version 2, or (at your option) | |
14 ;; any later version. | |
4421 | 15 |
4450 | 16 ;; GNU Emacs is distributed in the hope that it will be useful, |
17 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of | |
18 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
19 ;; GNU General Public License for more details. | |
20 | |
21 ;; You should have received a copy of the GNU General Public License | |
14169 | 22 ;; along with GNU Emacs; see the file COPYING. If not, write to the |
23 ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330, | |
24 ;; Boston, MA 02111-1307, USA. | |
4421 | 25 |
26 ;;; Commentary: | |
27 | |
28 ;; The functions contained in this file send various VT control codes | |
29 ;; to the terminal where emacs is running. The following functions are | |
30 ;; available. | |
31 | |
32 ;; Function Action | |
33 | |
34 ;; vt-wide set wide screen (132 characters) | |
35 ;; vt-narrow set narrow screen (80 characters) | |
36 ;; vt-toggle-screen toggle wide/narrow screen | |
37 ;; vt-keypad-on set applications keypad on | |
38 ;; vt-keypad-off set applications keypad off | |
39 ;; vt-numlock toggle applications keypad on/off | |
40 | |
41 ;;; Usage: | |
42 | |
43 ;; To use enable these functions, simply load this file. | |
44 | |
45 ;; Note: vt-control makes no effort to determine how the terminal is | |
46 ;; initially set. It assumes the terminal starts with a width | |
47 ;; of 80 characters and the applications keypad enabled. Nor | |
48 ;; does vt-control try to restore the terminal when emacs is | |
49 ;; killed or suspended. | |
50 | |
51 ;;; Code: | |
52 | |
53 | |
54 ;;; Global variables | |
55 | |
56 (defvar vt-applications-keypad-p t | |
57 "If non-nil, keypad is in applications mode.") | |
58 | |
59 (defvar vt-wide-p nil | |
60 "If non-nil, the screen is 132 characters wide.") | |
61 | |
62 | |
63 ;;; Screen width functions. | |
64 | |
65 (defun vt-wide nil | |
66 "Set the screen 132 characters wide." | |
67 (interactive) | |
68 (send-string-to-terminal "\e[?3h") | |
69 (set-screen-width 132) | |
70 (setq vt-wide-p t)) | |
71 | |
72 (defun vt-narrow nil | |
73 "Set the screen 80 characters wide." | |
74 (interactive) | |
75 (send-string-to-terminal "\e[?3l") | |
76 (set-screen-width 80) | |
77 (setq vt-wide-p nil)) | |
78 | |
79 (defun vt-toggle-screen nil | |
80 "Toggle between 80 and 132 character screen width." | |
81 (interactive) | |
82 (if vt-wide-p (vt-narrow) (vt-wide))) | |
83 | |
84 | |
85 ;;; Applications keypad functions. | |
86 | |
87 (defun vt-keypad-on (&optional tell) | |
88 "Turn on the VT applications keypad." | |
89 (interactive) | |
12362
03e8afdeabb3
(vt-keypad-on, vt-keypad-off): Updated codes sent
Richard M. Stallman <rms@gnu.org>
parents:
7979
diff
changeset
|
90 (send-string-to-terminal "\e=") |
4421 | 91 (setq vt-applications-keypad-p t) |
92 (if (or tell (interactive-p)) (message "Applications keypad enabled."))) | |
93 | |
94 (defun vt-keypad-off (&optional tell) | |
95 "Turn off the VT applications keypad." | |
96 (interactive "p") | |
12362
03e8afdeabb3
(vt-keypad-on, vt-keypad-off): Updated codes sent
Richard M. Stallman <rms@gnu.org>
parents:
7979
diff
changeset
|
97 (send-string-to-terminal "\e>") |
4421 | 98 (setq vt-applications-keypad-p nil) |
99 (if (or tell (interactive-p)) (message "Applications keypad disabled."))) | |
100 | |
101 (defun vt-numlock nil | |
102 "Toggle VT application keypad on and off." | |
103 (interactive) | |
104 (if vt-applications-keypad-p (vt-keypad-off (interactive-p)) | |
105 (vt-keypad-on (interactive-p)))) | |
106 | |
18383 | 107 (provide 'vt-control) |
108 | |
4421 | 109 ;;; vt-control.el ends here |