Mercurial > hg > xemacs-beta
annotate lisp/term/vt100.el @ 5047:07dcc7000bbf
put width before height consistently, fix a real bug found in the process
-------------------- ChangeLog entries follow: --------------------
src/ChangeLog addition:
2010-02-20 Ben Wing <ben@xemacs.org>
* EmacsFrame.c (EmacsFrameRecomputeCellSize):
* faces.c (default_face_font_info):
* faces.c (default_face_width_and_height):
* faces.c (Fface_list):
* faces.h:
* frame-gtk.c (gtk_set_initial_frame_size):
* frame-gtk.c (gtk_set_frame_size):
* frame-gtk.c (gtk_recompute_cell_sizes):
* frame.c:
* frame.c (frame_conversion_internal_1):
* frame.c (change_frame_size_1):
* frame.c (change_frame_size):
* glyphs-msw.c (mswindows_combo_box_instantiate):
* glyphs-widget.c (widget_instantiate):
* glyphs-widget.c (tree_view_query_geometry):
* glyphs-widget.c (Fwidget_logical_to_character_width):
* glyphs-widget.c (Fwidget_logical_to_character_height):
* indent.c (vmotion_pixels):
* redisplay-output.c (get_cursor_size_and_location):
* redisplay-xlike-inc.c (XLIKE_output_eol_cursor):
* redisplay-xlike-inc.c (XLIKE_flash):
* redisplay.c (calculate_baseline):
* redisplay.c (start_with_point_on_display_line):
* redisplay.c (glyph_to_pixel_translation):
* redisplay.c (pixel_to_glyph_translation):
* window.c (margin_width_internal):
* window.c (frame_size_valid_p):
* window.c (frame_pixsize_valid_p):
* window.c (check_frame_size):
* window.c (set_window_pixsize):
* window.c (window_pixel_height_to_char_height):
* window.c (window_char_height_to_pixel_height):
* window.c (window_displayed_height):
* window.c (window_pixel_width_to_char_width):
* window.c (window_char_width_to_pixel_width):
* window.c (change_window_height):
* window.c (window_scroll):
* window.h:
IMPORTANT: Aidan and Carbon Repo, please pay attention and fix
appropriately!
Rename: default_face_height_and_width -> default_face_width_and_height
and reverse width/height arguments.
Reverse width/height arguments to the following functions:
-- default_face_font_info
-- default_face_height_and_width (see above)
-- check_frame_size
-- frame_size_valid_p (made into a static function)
Fix a redisplay bug where args to default_face_height_and_width
were in the wrong order.
author | Ben Wing <ben@xemacs.org> |
---|---|
date | Sat, 20 Feb 2010 18:56:01 -0600 |
parents | 11502791fc1c |
children | 85bd42a1e544 308d34e9f07d |
rev | line source |
---|---|
0 | 1 ;;; vt100.el --- define VT100 function key sequences in function-key-map |
2 | |
622 | 3 ;; Copyright (C) 1989, 1993 Free Software Foundation, Inc. |
4 | |
0 | 5 ;; Author: FSF |
6 ;; Keywords: terminals | |
7 | |
8 ;;; This file is part of GNU Emacs. | |
9 ;;; | |
10 ;;; GNU Emacs is free software; you can redistribute it and/or modify | |
11 ;;; it under the terms of the GNU General Public License as published by | |
12 ;;; the Free Software Foundation; either version 2, or (at your option) | |
13 ;;; any later version. | |
14 ;;; | |
15 ;;; GNU Emacs is distributed in the hope that it will be useful, | |
16 ;;; but WITHOUT ANY WARRANTY; without even the implied warranty of | |
17 ;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
18 ;;; GNU General Public License for more details. | |
19 ;;; | |
20 ;;; You should have received a copy of the GNU General Public License | |
21 ;;; along with GNU Emacs; see the file COPYING. If not, write to | |
22 ;;; the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. | |
23 | |
622 | 24 ;;; Synched up with: FSF 21.0.103. |
25 | |
0 | 26 ;;; Commentary: |
27 | |
28 ;; Uses the Emacs 19 terminal initialization features --- won't work with 18. | |
29 | |
30 ;; Handles all VT100 clones, including the Apollo terminal. Also handles | |
31 ;; the VT200 --- its PF- and arrow- keys are different, but all those | |
32 ;; are really set up by the terminal initialization code, which mines them | |
33 ;; out of termcap. This package is here to define the keypad comma, dash | |
34 ;; and period (which aren't in termcap's repertoire) and the function for | |
35 ;; changing from 80 to 132 columns & vv. | |
36 | |
37 ;;; Code: | |
38 | |
39 ;; Set up function-key-map entries that termcap and terminfo don't know. | |
40 (load "term/lk201" nil t) | |
41 | |
42 ;;; Controlling the screen width. | |
622 | 43 (defvar vt100-wide-mode (= (frame-width) 132) |
0 | 44 "t if vt100 is in 132-column mode.") |
45 | |
46 (defun vt100-wide-mode (&optional arg) | |
47 "Toggle 132/80 column mode for vt100s. | |
48 With positive argument, switch to 132-column mode. | |
49 With negative argument, switch to 80-column mode." | |
50 (interactive "P") | |
51 (setq vt100-wide-mode | |
52 (if (null arg) (not vt100-wide-mode) | |
53 (> (prefix-numeric-value arg) 0))) | |
54 (send-string-to-terminal (if vt100-wide-mode "\e[?3h" "\e[?3l")) | |
55 (set-frame-width terminal-frame (if vt100-wide-mode 132 80))) | |
56 | |
57 ;;; vt100.el ends here |