mirror of
git://git.sv.gnu.org/emacs.git
synced 2025-12-19 04:10:18 -08:00
* cus-start.el (show-trailing-whitespace): Move to editing basics. * faces.el (trailing-whitespace): Don't use whitespace-faces group. * obsolete/old-whitespace.el (whitespace-faces): Remove group. (whitespace-highlight): Move to whitespace group. * comint.el (comint-source): * pcmpl-linux.el (pcmpl-linux): * shell.el (shell-faces): * eshell/esh-opt.el (eshell-opt): * international/ccl.el (ccl): Remove empty custom groups. * completion.el (dynamic-completion-mode): * jit-lock.el (jit-lock-debug-mode): * minibuffer.el (completion-in-region-mode): * type-break.el (type-break-mode-line-message-mode) (type-break-query-mode): * emulation/tpu-edt.el (tpu-edt-mode): * progmodes/subword.el (global-subword-mode, global-superword-mode): * progmodes/vhdl-mode.el (vhdl-electric-mode, vhdl-stutter-mode): * term/vt100.el (vt100-wide-mode): Specify explicit :group. * term/xterm.el (xterm): Change parent group to terminals. * master.el (master): Remove empty custom group. (master-mode): Remove unused :group argument. * textmodes/refill.el (refill): Remove empty custom group. (refill-mode): Remove unused :group argument. * textmodes/rst.el (rst-compile-toolsets): Use rst-compile group. * cedet/semantic/symref/list.el (semantic-symref-auto-expand-results) (semantic-symref-results-mode-hook) (semantic-symref-results-summary-function): Fix :group. * erc/erc-list.el (erc-list): * erc/erc-menu.el (erc-menu): * erc/erc-ring.el (erc-ring): Define custom groups, for define-erc-module. * gnus/shr-color.el (shr-color-visible-luminance-min) (shr-color-visible-distance-min): Use shr-color group. * url/url-news.el (url-news): Remove empty custom group.
53 lines
2 KiB
EmacsLisp
53 lines
2 KiB
EmacsLisp
;;; vt100.el --- define VT100 function key sequences in function-key-map
|
|
|
|
;; Copyright (C) 1989, 1993, 2001-2013 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 3 of the License, 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. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
;;; 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."
|
|
(tty-run-terminal-initialization (selected-frame) "lk201"))
|
|
|
|
;;; Controlling the screen width.
|
|
(define-minor-mode vt100-wide-mode
|
|
"Toggle 132/80 column mode for vt100s.
|
|
With a prefix argument ARG, switch to 132-column mode if ARG is
|
|
positive, and 80-column mode otherwise. If called from Lisp,
|
|
switch to 132-column mode if ARG is omitted or nil."
|
|
:global t :init-value (= (frame-width) 132)
|
|
:group 'terminals
|
|
(send-string-to-terminal (if vt100-wide-mode "\e[?3h" "\e[?3l"))
|
|
(set-frame-width terminal-frame (if vt100-wide-mode 132 80)))
|
|
|
|
;;; vt100.el ends here
|