Mercurial > emacs
annotate src/term.c @ 17241:d5cbb3a06adc libc-970325 libc-970326 libc-970327 libc-970328 libc-970329 libc-970330 libc-970331 libc-970401 libc-970402 libc-970403 libc-970404 libc-970405 libc-970406 libc-970407 libc-970408 libc-970409 libc-970410 libc-970411
(m32r,mn10300): Add.
| author | Doug Evans <dje@gnu.org> |
|---|---|
| date | Mon, 24 Mar 1997 20:38:28 +0000 |
| parents | 36caec9c2e52 |
| children | dd1ead861e95 |
| rev | line source |
|---|---|
| 253 | 1 /* terminal control module for terminals described by TERMCAP |
| 11235 | 2 Copyright (C) 1985, 86, 87, 93, 94, 95 Free Software Foundation, Inc. |
| 253 | 3 |
| 4 This file is part of GNU Emacs. | |
| 5 | |
| 6 GNU Emacs is free software; you can redistribute it and/or modify | |
| 7 it under the terms of the GNU General Public License as published by | |
| 621 | 8 the Free Software Foundation; either version 2, or (at your option) |
| 253 | 9 any later version. |
| 10 | |
| 11 GNU Emacs is distributed in the hope that it will be useful, | |
| 12 but WITHOUT ANY WARRANTY; without even the implied warranty of | |
| 13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
| 14 GNU General Public License for more details. | |
| 15 | |
| 16 You should have received a copy of the GNU General Public License | |
| 17 along with GNU Emacs; see the file COPYING. If not, write to | |
|
14186
ee40177f6c68
Update FSF's address in the preamble.
Erik Naggum <erik@naggum.no>
parents:
14036
diff
changeset
|
18 the Free Software Foundation, Inc., 59 Temple Place - Suite 330, |
|
ee40177f6c68
Update FSF's address in the preamble.
Erik Naggum <erik@naggum.no>
parents:
14036
diff
changeset
|
19 Boston, MA 02111-1307, USA. */ |
| 253 | 20 |
| 21 | |
|
7900
60795e826dad
Put stdio.h after config.h.
Richard M. Stallman <rms@gnu.org>
parents:
7649
diff
changeset
|
22 #include <config.h> |
| 253 | 23 #include <stdio.h> |
| 24 #include <ctype.h> | |
| 25 #include "termchar.h" | |
| 26 #include "termopts.h" | |
| 27 #include "cm.h" | |
| 28 #undef NULL | |
| 29 #include "lisp.h" | |
|
17046
84b0e9794a87
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16894
diff
changeset
|
30 #include "charset.h" |
|
84b0e9794a87
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16894
diff
changeset
|
31 #include "coding.h" |
| 765 | 32 #include "frame.h" |
| 253 | 33 #include "disptab.h" |
| 34 #include "termhooks.h" | |
| 533 | 35 #include "keyboard.h" |
| 253 | 36 |
| 8898 | 37 extern Lisp_Object Fmake_sparse_keymap (); |
| 38 | |
| 253 | 39 #define max(a, b) ((a) > (b) ? (a) : (b)) |
| 40 #define min(a, b) ((a) < (b) ? (a) : (b)) | |
| 41 | |
|
16094
4199e40152fb
(OUTPUT_IF, OUTPUT): Cast frame height to int.
Richard M. Stallman <rms@gnu.org>
parents:
16093
diff
changeset
|
42 #define OUTPUT(a) tputs (a, (int) (FRAME_HEIGHT (selected_frame) - curY), cmputc) |
| 253 | 43 #define OUTPUT1(a) tputs (a, 1, cmputc) |
| 44 #define OUTPUTL(a, lines) tputs (a, lines, cmputc) | |
|
16094
4199e40152fb
(OUTPUT_IF, OUTPUT): Cast frame height to int.
Richard M. Stallman <rms@gnu.org>
parents:
16093
diff
changeset
|
45 #define OUTPUT_IF(a) { if (a) tputs (a, (int) (FRAME_HEIGHT (selected_frame) - curY), cmputc); } |
| 253 | 46 #define OUTPUT1_IF(a) { if (a) tputs (a, 1, cmputc); } |
| 47 | |
|
15974
61249a8fe735
(Vring_bell_function): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
15094
diff
changeset
|
48 /* Function to use to ring the bell. */ |
|
61249a8fe735
(Vring_bell_function): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
15094
diff
changeset
|
49 Lisp_Object Vring_bell_function; |
|
61249a8fe735
(Vring_bell_function): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
15094
diff
changeset
|
50 |
|
3591
507f64624555
Apply typo patches from Paul Eggert.
Jim Blandy <jimb@redhat.com>
parents:
3489
diff
changeset
|
51 /* Terminal characteristics that higher levels want to look at. |
| 253 | 52 These are all extern'd in termchar.h */ |
| 53 | |
| 54 int must_write_spaces; /* Nonzero means spaces in the text | |
| 55 must actually be output; can't just skip | |
| 56 over some columns to leave them blank. */ | |
| 57 int min_padding_speed; /* Speed below which no padding necessary */ | |
| 58 | |
| 59 int line_ins_del_ok; /* Terminal can insert and delete lines */ | |
| 60 int char_ins_del_ok; /* Terminal can insert and delete chars */ | |
| 61 int scroll_region_ok; /* Terminal supports setting the | |
| 62 scroll window */ | |
|
10261
4fd304db9216
(scroll_region_cost): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
10121
diff
changeset
|
63 int scroll_region_cost; /* Cost of setting a scroll window, |
|
4fd304db9216
(scroll_region_cost): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
10121
diff
changeset
|
64 measured in characters */ |
| 765 | 65 int memory_below_frame; /* Terminal remembers lines |
| 253 | 66 scrolled off bottom */ |
| 67 int fast_clear_end_of_line; /* Terminal has a `ce' string */ | |
| 68 | |
| 765 | 69 /* Nonzero means no need to redraw the entire frame on resuming |
| 253 | 70 a suspended Emacs. This is useful on terminals with multiple pages, |
| 71 where one page is used for Emacs and another for all else. */ | |
| 72 int no_redraw_on_reenter; | |
| 73 | |
| 74 /* Hook functions that you can set to snap out the functions in this file. | |
| 75 These are all extern'd in termhooks.h */ | |
| 76 | |
| 77 int (*cursor_to_hook) (); | |
| 78 int (*raw_cursor_to_hook) (); | |
| 79 | |
| 80 int (*clear_to_end_hook) (); | |
| 765 | 81 int (*clear_frame_hook) (); |
| 253 | 82 int (*clear_end_of_line_hook) (); |
| 83 | |
| 84 int (*ins_del_lines_hook) (); | |
| 85 | |
| 86 int (*change_line_highlight_hook) (); | |
| 87 int (*reassert_line_highlight_hook) (); | |
| 88 | |
| 89 int (*insert_glyphs_hook) (); | |
| 90 int (*write_glyphs_hook) (); | |
| 91 int (*delete_glyphs_hook) (); | |
| 92 | |
| 93 int (*ring_bell_hook) (); | |
| 94 | |
| 95 int (*reset_terminal_modes_hook) (); | |
| 96 int (*set_terminal_modes_hook) (); | |
| 97 int (*update_begin_hook) (); | |
| 98 int (*update_end_hook) (); | |
| 99 int (*set_terminal_window_hook) (); | |
| 100 | |
| 101 int (*read_socket_hook) (); | |
| 102 | |
|
6652
a537d9d83e52
(frame_up_to_date_hook): Defined.
Richard M. Stallman <rms@gnu.org>
parents:
6250
diff
changeset
|
103 int (*frame_up_to_date_hook) (); |
|
a537d9d83e52
(frame_up_to_date_hook): Defined.
Richard M. Stallman <rms@gnu.org>
parents:
6250
diff
changeset
|
104 |
|
1717
aa7d6d57504b
* frame.h (struct frame): New fields `can_have_scrollbars' and
Jim Blandy <jimb@redhat.com>
parents:
1015
diff
changeset
|
105 /* Return the current position of the mouse. |
|
1781
3f161f6701b1
* term.c (set_vertical_scrollbar_hook, condemn_scrollbars_hook,
Jim Blandy <jimb@redhat.com>
parents:
1717
diff
changeset
|
106 |
|
3f161f6701b1
* term.c (set_vertical_scrollbar_hook, condemn_scrollbars_hook,
Jim Blandy <jimb@redhat.com>
parents:
1717
diff
changeset
|
107 Set *f to the frame the mouse is in, or zero if the mouse is in no |
|
3f161f6701b1
* term.c (set_vertical_scrollbar_hook, condemn_scrollbars_hook,
Jim Blandy <jimb@redhat.com>
parents:
1717
diff
changeset
|
108 Emacs frame. If it is set to zero, all the other arguments are |
|
3f161f6701b1
* term.c (set_vertical_scrollbar_hook, condemn_scrollbars_hook,
Jim Blandy <jimb@redhat.com>
parents:
1717
diff
changeset
|
109 garbage. |
|
3f161f6701b1
* term.c (set_vertical_scrollbar_hook, condemn_scrollbars_hook,
Jim Blandy <jimb@redhat.com>
parents:
1717
diff
changeset
|
110 |
|
1994
73ce9dd21093
Use the term `scroll bar', instead of `scrollbar'.
Jim Blandy <jimb@redhat.com>
parents:
1821
diff
changeset
|
111 If the motion started in a scroll bar, set *bar_window to the |
|
73ce9dd21093
Use the term `scroll bar', instead of `scrollbar'.
Jim Blandy <jimb@redhat.com>
parents:
1821
diff
changeset
|
112 scroll bar's window, *part to the part the mouse is currently over, |
|
73ce9dd21093
Use the term `scroll bar', instead of `scrollbar'.
Jim Blandy <jimb@redhat.com>
parents:
1821
diff
changeset
|
113 *x to the position of the mouse along the scroll bar, and *y to the |
|
73ce9dd21093
Use the term `scroll bar', instead of `scrollbar'.
Jim Blandy <jimb@redhat.com>
parents:
1821
diff
changeset
|
114 overall length of the scroll bar. |
|
1781
3f161f6701b1
* term.c (set_vertical_scrollbar_hook, condemn_scrollbars_hook,
Jim Blandy <jimb@redhat.com>
parents:
1717
diff
changeset
|
115 |
|
3f161f6701b1
* term.c (set_vertical_scrollbar_hook, condemn_scrollbars_hook,
Jim Blandy <jimb@redhat.com>
parents:
1717
diff
changeset
|
116 Otherwise, set *bar_window to Qnil, and *x and *y to the column and |
|
3f161f6701b1
* term.c (set_vertical_scrollbar_hook, condemn_scrollbars_hook,
Jim Blandy <jimb@redhat.com>
parents:
1717
diff
changeset
|
117 row of the character cell the mouse is over. |
|
3f161f6701b1
* term.c (set_vertical_scrollbar_hook, condemn_scrollbars_hook,
Jim Blandy <jimb@redhat.com>
parents:
1717
diff
changeset
|
118 |
|
3f161f6701b1
* term.c (set_vertical_scrollbar_hook, condemn_scrollbars_hook,
Jim Blandy <jimb@redhat.com>
parents:
1717
diff
changeset
|
119 Set *time to the time the mouse was at the returned position. |
|
3f161f6701b1
* term.c (set_vertical_scrollbar_hook, condemn_scrollbars_hook,
Jim Blandy <jimb@redhat.com>
parents:
1717
diff
changeset
|
120 |
|
3f161f6701b1
* term.c (set_vertical_scrollbar_hook, condemn_scrollbars_hook,
Jim Blandy <jimb@redhat.com>
parents:
1717
diff
changeset
|
121 This should clear mouse_moved until the next motion |
|
3f161f6701b1
* term.c (set_vertical_scrollbar_hook, condemn_scrollbars_hook,
Jim Blandy <jimb@redhat.com>
parents:
1717
diff
changeset
|
122 event arrives. */ |
| 11150 | 123 void (*mouse_position_hook) ( /* FRAME_PTR *f, int insist, |
|
1781
3f161f6701b1
* term.c (set_vertical_scrollbar_hook, condemn_scrollbars_hook,
Jim Blandy <jimb@redhat.com>
parents:
1717
diff
changeset
|
124 Lisp_Object *bar_window, |
|
1994
73ce9dd21093
Use the term `scroll bar', instead of `scrollbar'.
Jim Blandy <jimb@redhat.com>
parents:
1821
diff
changeset
|
125 enum scroll_bar_part *part, |
|
1717
aa7d6d57504b
* frame.h (struct frame): New fields `can_have_scrollbars' and
Jim Blandy <jimb@redhat.com>
parents:
1015
diff
changeset
|
126 Lisp_Object *x, |
|
aa7d6d57504b
* frame.h (struct frame): New fields `can_have_scrollbars' and
Jim Blandy <jimb@redhat.com>
parents:
1015
diff
changeset
|
127 Lisp_Object *y, |
|
aa7d6d57504b
* frame.h (struct frame): New fields `can_have_scrollbars' and
Jim Blandy <jimb@redhat.com>
parents:
1015
diff
changeset
|
128 unsigned long *time */ ); |
| 253 | 129 |
| 765 | 130 /* When reading from a minibuffer in a different frame, Emacs wants |
| 131 to shift the highlight from the selected frame to the minibuffer's | |
| 132 frame; under X, this means it lies about where the focus is. | |
| 339 | 133 This hook tells the window system code to re-decide where to put |
| 134 the highlight. */ | |
| 765 | 135 void (*frame_rehighlight_hook) ( /* FRAME_PTR f */ ); |
| 339 | 136 |
|
1821
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1781
diff
changeset
|
137 /* If we're displaying frames using a window system that can stack |
|
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1781
diff
changeset
|
138 frames on top of each other, this hook allows you to bring a frame |
|
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1781
diff
changeset
|
139 to the front, or bury it behind all the other windows. If this |
|
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1781
diff
changeset
|
140 hook is zero, that means the device we're displaying on doesn't |
|
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1781
diff
changeset
|
141 support overlapping frames, so there's no need to raise or lower |
|
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1781
diff
changeset
|
142 anything. |
|
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1781
diff
changeset
|
143 |
|
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1781
diff
changeset
|
144 If RAISE is non-zero, F is brought to the front, before all other |
|
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1781
diff
changeset
|
145 windows. If RAISE is zero, F is sent to the back, behind all other |
|
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1781
diff
changeset
|
146 windows. */ |
|
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1781
diff
changeset
|
147 void (*frame_raise_lower_hook) ( /* FRAME_PTR f, int raise */ ); |
|
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1781
diff
changeset
|
148 |
|
1994
73ce9dd21093
Use the term `scroll bar', instead of `scrollbar'.
Jim Blandy <jimb@redhat.com>
parents:
1821
diff
changeset
|
149 /* Set the vertical scroll bar for WINDOW to have its upper left corner |
|
1781
3f161f6701b1
* term.c (set_vertical_scrollbar_hook, condemn_scrollbars_hook,
Jim Blandy <jimb@redhat.com>
parents:
1717
diff
changeset
|
150 at (TOP, LEFT), and be LENGTH rows high. Set its handle to |
|
3f161f6701b1
* term.c (set_vertical_scrollbar_hook, condemn_scrollbars_hook,
Jim Blandy <jimb@redhat.com>
parents:
1717
diff
changeset
|
151 indicate that we are displaying PORTION characters out of a total |
|
3f161f6701b1
* term.c (set_vertical_scrollbar_hook, condemn_scrollbars_hook,
Jim Blandy <jimb@redhat.com>
parents:
1717
diff
changeset
|
152 of WHOLE characters, starting at POSITION. If WINDOW doesn't yet |
|
1994
73ce9dd21093
Use the term `scroll bar', instead of `scrollbar'.
Jim Blandy <jimb@redhat.com>
parents:
1821
diff
changeset
|
153 have a scroll bar, create one for it. */ |
|
73ce9dd21093
Use the term `scroll bar', instead of `scrollbar'.
Jim Blandy <jimb@redhat.com>
parents:
1821
diff
changeset
|
154 void (*set_vertical_scroll_bar_hook) |
|
1781
3f161f6701b1
* term.c (set_vertical_scrollbar_hook, condemn_scrollbars_hook,
Jim Blandy <jimb@redhat.com>
parents:
1717
diff
changeset
|
155 ( /* struct window *window, |
|
1717
aa7d6d57504b
* frame.h (struct frame): New fields `can_have_scrollbars' and
Jim Blandy <jimb@redhat.com>
parents:
1015
diff
changeset
|
156 int portion, int whole, int position */ ); |
|
aa7d6d57504b
* frame.h (struct frame): New fields `can_have_scrollbars' and
Jim Blandy <jimb@redhat.com>
parents:
1015
diff
changeset
|
157 |
|
1781
3f161f6701b1
* term.c (set_vertical_scrollbar_hook, condemn_scrollbars_hook,
Jim Blandy <jimb@redhat.com>
parents:
1717
diff
changeset
|
158 |
|
1717
aa7d6d57504b
* frame.h (struct frame): New fields `can_have_scrollbars' and
Jim Blandy <jimb@redhat.com>
parents:
1015
diff
changeset
|
159 /* The following three hooks are used when we're doing a thorough |
|
1994
73ce9dd21093
Use the term `scroll bar', instead of `scrollbar'.
Jim Blandy <jimb@redhat.com>
parents:
1821
diff
changeset
|
160 redisplay of the frame. We don't explicitly know which scroll bars |
|
1717
aa7d6d57504b
* frame.h (struct frame): New fields `can_have_scrollbars' and
Jim Blandy <jimb@redhat.com>
parents:
1015
diff
changeset
|
161 are going to be deleted, because keeping track of when windows go |
|
aa7d6d57504b
* frame.h (struct frame): New fields `can_have_scrollbars' and
Jim Blandy <jimb@redhat.com>
parents:
1015
diff
changeset
|
162 away is a real pain - can you say set-window-configuration? |
|
aa7d6d57504b
* frame.h (struct frame): New fields `can_have_scrollbars' and
Jim Blandy <jimb@redhat.com>
parents:
1015
diff
changeset
|
163 Instead, we just assert at the beginning of redisplay that *all* |
|
1994
73ce9dd21093
Use the term `scroll bar', instead of `scrollbar'.
Jim Blandy <jimb@redhat.com>
parents:
1821
diff
changeset
|
164 scroll bars are to be removed, and then save scroll bars from the |
| 14036 | 165 fiery pit when we actually redisplay their window. */ |
|
1717
aa7d6d57504b
* frame.h (struct frame): New fields `can_have_scrollbars' and
Jim Blandy <jimb@redhat.com>
parents:
1015
diff
changeset
|
166 |
|
1994
73ce9dd21093
Use the term `scroll bar', instead of `scrollbar'.
Jim Blandy <jimb@redhat.com>
parents:
1821
diff
changeset
|
167 /* Arrange for all scroll bars on FRAME to be removed at the next call |
|
73ce9dd21093
Use the term `scroll bar', instead of `scrollbar'.
Jim Blandy <jimb@redhat.com>
parents:
1821
diff
changeset
|
168 to `*judge_scroll_bars_hook'. A scroll bar may be spared if |
|
73ce9dd21093
Use the term `scroll bar', instead of `scrollbar'.
Jim Blandy <jimb@redhat.com>
parents:
1821
diff
changeset
|
169 `*redeem_scroll_bar_hook' is applied to its window before the judgement. |
|
1781
3f161f6701b1
* term.c (set_vertical_scrollbar_hook, condemn_scrollbars_hook,
Jim Blandy <jimb@redhat.com>
parents:
1717
diff
changeset
|
170 |
|
3f161f6701b1
* term.c (set_vertical_scrollbar_hook, condemn_scrollbars_hook,
Jim Blandy <jimb@redhat.com>
parents:
1717
diff
changeset
|
171 This should be applied to each frame each time its window tree is |
|
1994
73ce9dd21093
Use the term `scroll bar', instead of `scrollbar'.
Jim Blandy <jimb@redhat.com>
parents:
1821
diff
changeset
|
172 redisplayed, even if it is not displaying scroll bars at the moment; |
|
73ce9dd21093
Use the term `scroll bar', instead of `scrollbar'.
Jim Blandy <jimb@redhat.com>
parents:
1821
diff
changeset
|
173 if the HAS_SCROLL_BARS flag has just been turned off, only calling |
|
73ce9dd21093
Use the term `scroll bar', instead of `scrollbar'.
Jim Blandy <jimb@redhat.com>
parents:
1821
diff
changeset
|
174 this and the judge_scroll_bars_hook will get rid of them. |
|
1717
aa7d6d57504b
* frame.h (struct frame): New fields `can_have_scrollbars' and
Jim Blandy <jimb@redhat.com>
parents:
1015
diff
changeset
|
175 |
|
1781
3f161f6701b1
* term.c (set_vertical_scrollbar_hook, condemn_scrollbars_hook,
Jim Blandy <jimb@redhat.com>
parents:
1717
diff
changeset
|
176 If non-zero, this hook should be safe to apply to any frame, |
|
1994
73ce9dd21093
Use the term `scroll bar', instead of `scrollbar'.
Jim Blandy <jimb@redhat.com>
parents:
1821
diff
changeset
|
177 whether or not it can support scroll bars, and whether or not it is |
|
1781
3f161f6701b1
* term.c (set_vertical_scrollbar_hook, condemn_scrollbars_hook,
Jim Blandy <jimb@redhat.com>
parents:
1717
diff
changeset
|
178 currently displaying them. */ |
|
1994
73ce9dd21093
Use the term `scroll bar', instead of `scrollbar'.
Jim Blandy <jimb@redhat.com>
parents:
1821
diff
changeset
|
179 void (*condemn_scroll_bars_hook)( /* FRAME_PTR *frame */ ); |
|
1781
3f161f6701b1
* term.c (set_vertical_scrollbar_hook, condemn_scrollbars_hook,
Jim Blandy <jimb@redhat.com>
parents:
1717
diff
changeset
|
180 |
|
1994
73ce9dd21093
Use the term `scroll bar', instead of `scrollbar'.
Jim Blandy <jimb@redhat.com>
parents:
1821
diff
changeset
|
181 /* Unmark WINDOW's scroll bar for deletion in this judgement cycle. |
|
73ce9dd21093
Use the term `scroll bar', instead of `scrollbar'.
Jim Blandy <jimb@redhat.com>
parents:
1821
diff
changeset
|
182 Note that it's okay to redeem a scroll bar that is not condemned. */ |
|
73ce9dd21093
Use the term `scroll bar', instead of `scrollbar'.
Jim Blandy <jimb@redhat.com>
parents:
1821
diff
changeset
|
183 void (*redeem_scroll_bar_hook)( /* struct window *window */ ); |
|
1717
aa7d6d57504b
* frame.h (struct frame): New fields `can_have_scrollbars' and
Jim Blandy <jimb@redhat.com>
parents:
1015
diff
changeset
|
184 |
|
1994
73ce9dd21093
Use the term `scroll bar', instead of `scrollbar'.
Jim Blandy <jimb@redhat.com>
parents:
1821
diff
changeset
|
185 /* Remove all scroll bars on FRAME that haven't been saved since the |
|
73ce9dd21093
Use the term `scroll bar', instead of `scrollbar'.
Jim Blandy <jimb@redhat.com>
parents:
1821
diff
changeset
|
186 last call to `*condemn_scroll_bars_hook'. |
|
1781
3f161f6701b1
* term.c (set_vertical_scrollbar_hook, condemn_scrollbars_hook,
Jim Blandy <jimb@redhat.com>
parents:
1717
diff
changeset
|
187 |
|
3f161f6701b1
* term.c (set_vertical_scrollbar_hook, condemn_scrollbars_hook,
Jim Blandy <jimb@redhat.com>
parents:
1717
diff
changeset
|
188 This should be applied to each frame after each time its window |
|
1994
73ce9dd21093
Use the term `scroll bar', instead of `scrollbar'.
Jim Blandy <jimb@redhat.com>
parents:
1821
diff
changeset
|
189 tree is redisplayed, even if it is not displaying scroll bars at the |
|
73ce9dd21093
Use the term `scroll bar', instead of `scrollbar'.
Jim Blandy <jimb@redhat.com>
parents:
1821
diff
changeset
|
190 moment; if the HAS_SCROLL_BARS flag has just been turned off, only |
|
73ce9dd21093
Use the term `scroll bar', instead of `scrollbar'.
Jim Blandy <jimb@redhat.com>
parents:
1821
diff
changeset
|
191 calling this and condemn_scroll_bars_hook will get rid of them. |
|
1781
3f161f6701b1
* term.c (set_vertical_scrollbar_hook, condemn_scrollbars_hook,
Jim Blandy <jimb@redhat.com>
parents:
1717
diff
changeset
|
192 |
|
3f161f6701b1
* term.c (set_vertical_scrollbar_hook, condemn_scrollbars_hook,
Jim Blandy <jimb@redhat.com>
parents:
1717
diff
changeset
|
193 If non-zero, this hook should be safe to apply to any frame, |
|
1994
73ce9dd21093
Use the term `scroll bar', instead of `scrollbar'.
Jim Blandy <jimb@redhat.com>
parents:
1821
diff
changeset
|
194 whether or not it can support scroll bars, and whether or not it is |
|
1781
3f161f6701b1
* term.c (set_vertical_scrollbar_hook, condemn_scrollbars_hook,
Jim Blandy <jimb@redhat.com>
parents:
1717
diff
changeset
|
195 currently displaying them. */ |
|
1994
73ce9dd21093
Use the term `scroll bar', instead of `scrollbar'.
Jim Blandy <jimb@redhat.com>
parents:
1821
diff
changeset
|
196 void (*judge_scroll_bars_hook)( /* FRAME_PTR *FRAME */ ); |
|
1717
aa7d6d57504b
* frame.h (struct frame): New fields `can_have_scrollbars' and
Jim Blandy <jimb@redhat.com>
parents:
1015
diff
changeset
|
197 |
|
aa7d6d57504b
* frame.h (struct frame): New fields `can_have_scrollbars' and
Jim Blandy <jimb@redhat.com>
parents:
1015
diff
changeset
|
198 |
| 253 | 199 /* Strings, numbers and flags taken from the termcap entry. */ |
| 200 | |
|
17046
84b0e9794a87
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16894
diff
changeset
|
201 char *TS_end_italic_mode; /* termcal "ae" */ |
|
84b0e9794a87
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16894
diff
changeset
|
202 char *TS_ins_line; /* "al" */ |
|
84b0e9794a87
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16894
diff
changeset
|
203 char *TS_italic_mode; /* "as" */ |
| 253 | 204 char *TS_ins_multi_lines; /* "AL" (one parameter, # lines to insert) */ |
| 205 char *TS_bell; /* "bl" */ | |
| 206 char *TS_clr_to_bottom; /* "cd" */ | |
| 207 char *TS_clr_line; /* "ce", clear to end of line */ | |
| 765 | 208 char *TS_clr_frame; /* "cl" */ |
| 253 | 209 char *TS_set_scroll_region; /* "cs" (2 params, first line and last line) */ |
| 210 char *TS_set_scroll_region_1; /* "cS" (4 params: total lines, | |
| 211 lines above scroll region, lines below it, | |
| 212 total lines again) */ | |
| 213 char *TS_del_char; /* "dc" */ | |
| 214 char *TS_del_multi_chars; /* "DC" (one parameter, # chars to delete) */ | |
| 215 char *TS_del_line; /* "dl" */ | |
| 216 char *TS_del_multi_lines; /* "DL" (one parameter, # lines to delete) */ | |
| 217 char *TS_delete_mode; /* "dm", enter character-delete mode */ | |
| 218 char *TS_end_delete_mode; /* "ed", leave character-delete mode */ | |
| 219 char *TS_end_insert_mode; /* "ei", leave character-insert mode */ | |
| 220 char *TS_ins_char; /* "ic" */ | |
| 221 char *TS_ins_multi_chars; /* "IC" (one parameter, # chars to insert) */ | |
| 222 char *TS_insert_mode; /* "im", enter character-insert mode */ | |
| 223 char *TS_pad_inserted_char; /* "ip". Just padding, no commands. */ | |
| 224 char *TS_end_keypad_mode; /* "ke" */ | |
| 225 char *TS_keypad_mode; /* "ks" */ | |
|
17046
84b0e9794a87
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16894
diff
changeset
|
226 char *TS_bold_mode; /* "md" */ |
|
84b0e9794a87
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16894
diff
changeset
|
227 char *TS_end_bold_mode; /* "me" */ |
| 253 | 228 char *TS_pad_char; /* "pc", char to use as padding */ |
| 229 char *TS_repeat; /* "rp" (2 params, # times to repeat | |
| 230 and character to be repeated) */ | |
| 231 char *TS_end_standout_mode; /* "se" */ | |
| 232 char *TS_fwd_scroll; /* "sf" */ | |
| 233 char *TS_standout_mode; /* "so" */ | |
| 234 char *TS_rev_scroll; /* "sr" */ | |
| 235 char *TS_end_termcap_modes; /* "te" */ | |
| 236 char *TS_termcap_modes; /* "ti" */ | |
|
17046
84b0e9794a87
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16894
diff
changeset
|
237 char *TS_end_underscore_mode; /* "ue" */ |
|
84b0e9794a87
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16894
diff
changeset
|
238 char *TS_underscore_mode; /* "us" */ |
| 253 | 239 char *TS_visible_bell; /* "vb" */ |
| 240 char *TS_end_visual_mode; /* "ve" */ | |
| 241 char *TS_visual_mode; /* "vi" */ | |
| 242 char *TS_set_window; /* "wi" (4 params, start and end of window, | |
| 243 each as vpos and hpos) */ | |
| 244 | |
| 245 int TF_hazeltine; /* termcap hz flag. */ | |
| 246 int TF_insmode_motion; /* termcap mi flag: can move while in insert mode. */ | |
| 247 int TF_standout_motion; /* termcap mi flag: can move while in standout mode. */ | |
| 248 int TF_underscore; /* termcap ul flag: _ underlines if overstruck on | |
| 249 nonblank position. Must clear before writing _. */ | |
| 250 int TF_teleray; /* termcap xt flag: many weird consequences. | |
| 251 For t1061. */ | |
| 252 | |
| 253 int TF_xs; /* Nonzero for "xs". If set together with | |
| 254 TN_standout_width == 0, it means don't bother | |
| 255 to write any end-standout cookies. */ | |
| 256 | |
| 257 int TN_standout_width; /* termcap sg number: width occupied by standout | |
| 258 markers */ | |
| 259 | |
| 260 static int RPov; /* # chars to start a TS_repeat */ | |
| 261 | |
| 262 static int delete_in_insert_mode; /* delete mode == insert mode */ | |
| 263 | |
| 264 static int se_is_so; /* 1 if same string both enters and leaves | |
| 265 standout mode */ | |
| 266 | |
| 267 /* internal state */ | |
| 268 | |
|
10771
d564078d10c6
(calculate_costs): Update max_frame_height, max_frame_width.
Richard M. Stallman <rms@gnu.org>
parents:
10481
diff
changeset
|
269 /* The largest frame width in any call to calculate_costs. */ |
|
d564078d10c6
(calculate_costs): Update max_frame_height, max_frame_width.
Richard M. Stallman <rms@gnu.org>
parents:
10481
diff
changeset
|
270 int max_frame_width; |
|
d564078d10c6
(calculate_costs): Update max_frame_height, max_frame_width.
Richard M. Stallman <rms@gnu.org>
parents:
10481
diff
changeset
|
271 /* The largest frame height in any call to calculate_costs. */ |
|
d564078d10c6
(calculate_costs): Update max_frame_height, max_frame_width.
Richard M. Stallman <rms@gnu.org>
parents:
10481
diff
changeset
|
272 int max_frame_height; |
|
d564078d10c6
(calculate_costs): Update max_frame_height, max_frame_width.
Richard M. Stallman <rms@gnu.org>
parents:
10481
diff
changeset
|
273 |
| 253 | 274 /* Number of chars of space used for standout marker at beginning of line, |
| 275 or'd with 0100. Zero if no standout marker at all. | |
|
10771
d564078d10c6
(calculate_costs): Update max_frame_height, max_frame_width.
Richard M. Stallman <rms@gnu.org>
parents:
10481
diff
changeset
|
276 The length of these vectors is max_frame_height. |
| 253 | 277 |
| 278 Used IFF TN_standout_width >= 0. */ | |
| 279 | |
| 280 static char *chars_wasted; | |
| 281 static char *copybuf; | |
| 282 | |
| 283 /* nonzero means supposed to write text in standout mode. */ | |
| 284 int standout_requested; | |
| 285 | |
| 286 int insert_mode; /* Nonzero when in insert mode. */ | |
| 287 int standout_mode; /* Nonzero when in standout mode. */ | |
| 288 | |
| 289 /* Size of window specified by higher levels. | |
| 765 | 290 This is the number of lines, from the top of frame downwards, |
| 253 | 291 which can participate in insert-line/delete-line operations. |
| 292 | |
| 765 | 293 Effectively it excludes the bottom frame_height - specified_window_size |
| 253 | 294 lines from those operations. */ |
| 295 | |
| 296 int specified_window; | |
| 297 | |
| 765 | 298 /* Frame currently being redisplayed; 0 if not currently redisplaying. |
| 253 | 299 (Direct output does not count). */ |
| 300 | |
| 765 | 301 FRAME_PTR updating_frame; |
| 253 | 302 |
|
6752
f9236145bad7
(system_uses_terminfo): New variable.
Karl Heuer <kwzh@gnu.org>
parents:
6652
diff
changeset
|
303 /* Provided for lisp packages. */ |
|
f9236145bad7
(system_uses_terminfo): New variable.
Karl Heuer <kwzh@gnu.org>
parents:
6652
diff
changeset
|
304 static int system_uses_terminfo; |
|
f9236145bad7
(system_uses_terminfo): New variable.
Karl Heuer <kwzh@gnu.org>
parents:
6652
diff
changeset
|
305 |
| 253 | 306 char *tparam (); |
|
8612
86065bec6fc9
(term_init): Added missing argument to tgetstr.
Richard M. Stallman <rms@gnu.org>
parents:
8027
diff
changeset
|
307 |
|
86065bec6fc9
(term_init): Added missing argument to tgetstr.
Richard M. Stallman <rms@gnu.org>
parents:
8027
diff
changeset
|
308 extern char *tgetstr (); |
| 253 | 309 |
|
9797
05d9072c5a38
(term_init) [WINDOWSNT]: Do some Windows-specific
Richard M. Stallman <rms@gnu.org>
parents:
9658
diff
changeset
|
310 |
|
05d9072c5a38
(term_init) [WINDOWSNT]: Do some Windows-specific
Richard M. Stallman <rms@gnu.org>
parents:
9658
diff
changeset
|
311 #ifdef WINDOWSNT |
|
05d9072c5a38
(term_init) [WINDOWSNT]: Do some Windows-specific
Richard M. Stallman <rms@gnu.org>
parents:
9658
diff
changeset
|
312 /* We aren't X windows, but we aren't termcap either. This makes me |
|
05d9072c5a38
(term_init) [WINDOWSNT]: Do some Windows-specific
Richard M. Stallman <rms@gnu.org>
parents:
9658
diff
changeset
|
313 uncertain as to what value to use for frame.output_method. For |
|
05d9072c5a38
(term_init) [WINDOWSNT]: Do some Windows-specific
Richard M. Stallman <rms@gnu.org>
parents:
9658
diff
changeset
|
314 this file, we'll define FRAME_TERMCAP_P to be zero so that our |
|
05d9072c5a38
(term_init) [WINDOWSNT]: Do some Windows-specific
Richard M. Stallman <rms@gnu.org>
parents:
9658
diff
changeset
|
315 output hooks get called instead of the termcap functions. Probably |
|
05d9072c5a38
(term_init) [WINDOWSNT]: Do some Windows-specific
Richard M. Stallman <rms@gnu.org>
parents:
9658
diff
changeset
|
316 the best long-term solution is to define an output_windows_nt... */ |
|
05d9072c5a38
(term_init) [WINDOWSNT]: Do some Windows-specific
Richard M. Stallman <rms@gnu.org>
parents:
9658
diff
changeset
|
317 |
|
05d9072c5a38
(term_init) [WINDOWSNT]: Do some Windows-specific
Richard M. Stallman <rms@gnu.org>
parents:
9658
diff
changeset
|
318 #undef FRAME_TERMCAP_P |
|
05d9072c5a38
(term_init) [WINDOWSNT]: Do some Windows-specific
Richard M. Stallman <rms@gnu.org>
parents:
9658
diff
changeset
|
319 #define FRAME_TERMCAP_P(_f_) 0 |
|
05d9072c5a38
(term_init) [WINDOWSNT]: Do some Windows-specific
Richard M. Stallman <rms@gnu.org>
parents:
9658
diff
changeset
|
320 #endif /* WINDOWSNT */ |
|
05d9072c5a38
(term_init) [WINDOWSNT]: Do some Windows-specific
Richard M. Stallman <rms@gnu.org>
parents:
9658
diff
changeset
|
321 |
| 253 | 322 ring_bell () |
| 323 { | |
|
15974
61249a8fe735
(Vring_bell_function): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
15094
diff
changeset
|
324 if (! NILP (Vring_bell_function)) |
|
61249a8fe735
(Vring_bell_function): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
15094
diff
changeset
|
325 { |
|
61249a8fe735
(Vring_bell_function): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
15094
diff
changeset
|
326 Lisp_Object function; |
|
61249a8fe735
(Vring_bell_function): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
15094
diff
changeset
|
327 |
|
61249a8fe735
(Vring_bell_function): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
15094
diff
changeset
|
328 /* Temporarily set the global variable to nil |
|
61249a8fe735
(Vring_bell_function): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
15094
diff
changeset
|
329 so that if we get an error, it stays nil |
|
61249a8fe735
(Vring_bell_function): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
15094
diff
changeset
|
330 and we don't call it over and over. |
|
61249a8fe735
(Vring_bell_function): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
15094
diff
changeset
|
331 |
|
61249a8fe735
(Vring_bell_function): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
15094
diff
changeset
|
332 We don't specbind it, because that would carefully |
|
61249a8fe735
(Vring_bell_function): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
15094
diff
changeset
|
333 restore the bad value if there's an error |
|
61249a8fe735
(Vring_bell_function): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
15094
diff
changeset
|
334 and make the loop of errors happen anyway. */ |
|
61249a8fe735
(Vring_bell_function): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
15094
diff
changeset
|
335 function = Vring_bell_function; |
|
61249a8fe735
(Vring_bell_function): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
15094
diff
changeset
|
336 Vring_bell_function = Qnil; |
|
61249a8fe735
(Vring_bell_function): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
15094
diff
changeset
|
337 |
|
61249a8fe735
(Vring_bell_function): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
15094
diff
changeset
|
338 call0 (function); |
|
61249a8fe735
(Vring_bell_function): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
15094
diff
changeset
|
339 |
|
61249a8fe735
(Vring_bell_function): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
15094
diff
changeset
|
340 Vring_bell_function = function; |
|
61249a8fe735
(Vring_bell_function): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
15094
diff
changeset
|
341 return; |
|
61249a8fe735
(Vring_bell_function): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
15094
diff
changeset
|
342 } |
|
61249a8fe735
(Vring_bell_function): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
15094
diff
changeset
|
343 |
|
969
16649ee21625
* term.c (FRAME_IS_TERMCAP, FRAME_IS_X, FRAME_HAS_MINIBUF):
Jim Blandy <jimb@redhat.com>
parents:
797
diff
changeset
|
344 if (! FRAME_TERMCAP_P (selected_frame)) |
| 253 | 345 { |
| 346 (*ring_bell_hook) (); | |
| 347 return; | |
| 348 } | |
| 349 OUTPUT (TS_visible_bell && visible_bell ? TS_visible_bell : TS_bell); | |
| 350 } | |
| 351 | |
| 352 set_terminal_modes () | |
| 353 { | |
|
969
16649ee21625
* term.c (FRAME_IS_TERMCAP, FRAME_IS_X, FRAME_HAS_MINIBUF):
Jim Blandy <jimb@redhat.com>
parents:
797
diff
changeset
|
354 if (! FRAME_TERMCAP_P (selected_frame)) |
| 253 | 355 { |
| 356 (*set_terminal_modes_hook) (); | |
| 357 return; | |
| 358 } | |
| 359 OUTPUT_IF (TS_termcap_modes); | |
| 360 OUTPUT_IF (TS_visual_mode); | |
| 361 OUTPUT_IF (TS_keypad_mode); | |
| 362 losecursor (); | |
| 363 } | |
| 364 | |
| 365 reset_terminal_modes () | |
| 366 { | |
|
969
16649ee21625
* term.c (FRAME_IS_TERMCAP, FRAME_IS_X, FRAME_HAS_MINIBUF):
Jim Blandy <jimb@redhat.com>
parents:
797
diff
changeset
|
367 if (! FRAME_TERMCAP_P (selected_frame)) |
| 253 | 368 { |
| 369 (*reset_terminal_modes_hook) (); | |
| 370 return; | |
| 371 } | |
| 372 if (TN_standout_width < 0) | |
| 373 turn_off_highlight (); | |
| 374 turn_off_insert (); | |
| 375 OUTPUT_IF (TS_end_keypad_mode); | |
| 376 OUTPUT_IF (TS_end_visual_mode); | |
| 377 OUTPUT_IF (TS_end_termcap_modes); | |
| 378 /* Output raw CR so kernel can track the cursor hpos. */ | |
| 379 /* But on magic-cookie terminals this can erase an end-standout marker and | |
| 765 | 380 cause the rest of the frame to be in standout, so move down first. */ |
| 253 | 381 if (TN_standout_width >= 0) |
| 382 cmputc ('\n'); | |
| 383 cmputc ('\r'); | |
| 384 } | |
| 385 | |
| 765 | 386 update_begin (f) |
| 387 FRAME_PTR f; | |
| 253 | 388 { |
| 765 | 389 updating_frame = f; |
|
969
16649ee21625
* term.c (FRAME_IS_TERMCAP, FRAME_IS_X, FRAME_HAS_MINIBUF):
Jim Blandy <jimb@redhat.com>
parents:
797
diff
changeset
|
390 if (! FRAME_TERMCAP_P (updating_frame)) |
| 765 | 391 (*update_begin_hook) (f); |
| 253 | 392 } |
| 393 | |
| 765 | 394 update_end (f) |
| 395 FRAME_PTR f; | |
| 253 | 396 { |
|
969
16649ee21625
* term.c (FRAME_IS_TERMCAP, FRAME_IS_X, FRAME_HAS_MINIBUF):
Jim Blandy <jimb@redhat.com>
parents:
797
diff
changeset
|
397 if (! FRAME_TERMCAP_P (updating_frame)) |
| 253 | 398 { |
|
7649
eeefa4ac7978
(update_end): Undo previous change.
Richard M. Stallman <rms@gnu.org>
parents:
6752
diff
changeset
|
399 (*update_end_hook) (f); |
|
5648
bd8a172bf8a0
(update_end): Clear updating_frame before calling hook.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
400 updating_frame = 0; |
| 253 | 401 return; |
| 402 } | |
| 403 turn_off_insert (); | |
| 404 background_highlight (); | |
| 405 standout_requested = 0; | |
| 765 | 406 updating_frame = 0; |
| 253 | 407 } |
| 408 | |
| 409 set_terminal_window (size) | |
| 410 int size; | |
| 411 { | |
|
969
16649ee21625
* term.c (FRAME_IS_TERMCAP, FRAME_IS_X, FRAME_HAS_MINIBUF):
Jim Blandy <jimb@redhat.com>
parents:
797
diff
changeset
|
412 if (! FRAME_TERMCAP_P (updating_frame)) |
| 253 | 413 { |
| 414 (*set_terminal_window_hook) (size); | |
| 415 return; | |
| 416 } | |
| 765 | 417 specified_window = size ? size : FRAME_HEIGHT (selected_frame); |
| 253 | 418 if (!scroll_region_ok) |
| 419 return; | |
| 420 set_scroll_region (0, specified_window); | |
| 421 } | |
| 422 | |
| 423 set_scroll_region (start, stop) | |
| 424 int start, stop; | |
| 425 { | |
| 426 char *buf; | |
| 427 if (TS_set_scroll_region) | |
| 428 { | |
| 429 buf = tparam (TS_set_scroll_region, 0, 0, start, stop - 1); | |
| 430 } | |
| 431 else if (TS_set_scroll_region_1) | |
| 432 { | |
| 433 buf = tparam (TS_set_scroll_region_1, 0, 0, | |
| 765 | 434 FRAME_HEIGHT (selected_frame), start, |
| 435 FRAME_HEIGHT (selected_frame) - stop, | |
| 436 FRAME_HEIGHT (selected_frame)); | |
| 253 | 437 } |
| 438 else | |
| 439 { | |
| 765 | 440 buf = tparam (TS_set_window, 0, 0, start, 0, stop, FRAME_WIDTH (selected_frame)); |
| 253 | 441 } |
| 442 OUTPUT (buf); | |
|
2439
b6c62e4abf59
Put interrupt input blocking in a separate file from xterm.h.
Jim Blandy <jimb@redhat.com>
parents:
2243
diff
changeset
|
443 xfree (buf); |
| 253 | 444 losecursor (); |
| 445 } | |
| 446 | |
| 447 turn_on_insert () | |
| 448 { | |
| 449 if (!insert_mode) | |
| 450 OUTPUT (TS_insert_mode); | |
| 451 insert_mode = 1; | |
| 452 } | |
| 453 | |
| 454 turn_off_insert () | |
| 455 { | |
| 456 if (insert_mode) | |
| 457 OUTPUT (TS_end_insert_mode); | |
| 458 insert_mode = 0; | |
| 459 } | |
| 460 | |
| 461 /* Handle highlighting when TN_standout_width (termcap sg) is not specified. | |
| 462 In these terminals, output is affected by the value of standout | |
| 463 mode when the output is written. | |
| 464 | |
| 465 These functions are called on all terminals, but do nothing | |
| 466 on terminals whose standout mode does not work that way. */ | |
| 467 | |
| 468 turn_off_highlight () | |
| 469 { | |
| 470 if (TN_standout_width < 0) | |
| 471 { | |
| 472 if (standout_mode) | |
| 473 OUTPUT_IF (TS_end_standout_mode); | |
| 474 standout_mode = 0; | |
| 475 } | |
| 476 } | |
| 477 | |
| 478 turn_on_highlight () | |
| 479 { | |
| 480 if (TN_standout_width < 0) | |
| 481 { | |
| 482 if (!standout_mode) | |
| 483 OUTPUT_IF (TS_standout_mode); | |
| 484 standout_mode = 1; | |
| 485 } | |
| 486 } | |
| 487 | |
| 488 /* Set standout mode to the state it should be in for | |
| 489 empty space inside windows. What this is, | |
| 490 depends on the user option inverse-video. */ | |
| 491 | |
| 492 background_highlight () | |
| 493 { | |
| 494 if (TN_standout_width >= 0) | |
| 495 return; | |
| 496 if (inverse_video) | |
| 497 turn_on_highlight (); | |
| 498 else | |
| 499 turn_off_highlight (); | |
| 500 } | |
| 501 | |
| 502 /* Set standout mode to the mode specified for the text to be output. */ | |
| 503 | |
| 504 static | |
| 505 highlight_if_desired () | |
| 506 { | |
| 507 if (TN_standout_width >= 0) | |
| 508 return; | |
| 509 if (!inverse_video == !standout_requested) | |
| 510 turn_off_highlight (); | |
| 511 else | |
| 512 turn_on_highlight (); | |
| 513 } | |
| 514 | |
| 515 /* Handle standout mode for terminals in which TN_standout_width >= 0. | |
| 516 On these terminals, standout is controlled by markers that | |
| 765 | 517 live inside the terminal's memory. TN_standout_width is the width |
| 253 | 518 that the marker occupies in memory. Standout runs from the marker |
| 519 to the end of the line on some terminals, or to the next | |
| 520 turn-off-standout marker (TS_end_standout_mode) string | |
| 521 on other terminals. */ | |
| 522 | |
| 523 /* Write a standout marker or end-standout marker at the front of the line | |
| 524 at vertical position vpos. */ | |
| 525 | |
| 526 write_standout_marker (flag, vpos) | |
| 527 int flag, vpos; | |
| 528 { | |
| 529 if (flag || (TS_end_standout_mode && !TF_teleray && !se_is_so | |
| 530 && !(TF_xs && TN_standout_width == 0))) | |
| 531 { | |
| 532 cmgoto (vpos, 0); | |
| 533 cmplus (TN_standout_width); | |
| 534 OUTPUT (flag ? TS_standout_mode : TS_end_standout_mode); | |
| 535 chars_wasted[curY] = TN_standout_width | 0100; | |
| 536 } | |
| 537 } | |
| 538 | |
| 539 /* External interface to control of standout mode. | |
| 540 Call this when about to modify line at position VPOS | |
| 541 and not change whether it is highlighted. */ | |
| 542 | |
| 543 reassert_line_highlight (highlight, vpos) | |
| 544 int highlight; | |
| 545 int vpos; | |
| 546 { | |
|
969
16649ee21625
* term.c (FRAME_IS_TERMCAP, FRAME_IS_X, FRAME_HAS_MINIBUF):
Jim Blandy <jimb@redhat.com>
parents:
797
diff
changeset
|
547 if (! FRAME_TERMCAP_P ((updating_frame ? updating_frame : selected_frame))) |
| 253 | 548 { |
| 549 (*reassert_line_highlight_hook) (highlight, vpos); | |
| 550 return; | |
| 551 } | |
| 552 if (TN_standout_width < 0) | |
| 553 /* Handle terminals where standout takes affect at output time */ | |
| 554 standout_requested = highlight; | |
| 555 else if (chars_wasted[vpos] == 0) | |
| 556 /* For terminals with standout markers, write one on this line | |
| 557 if there isn't one already. */ | |
| 558 write_standout_marker (highlight, vpos); | |
| 559 } | |
| 560 | |
| 561 /* Call this when about to modify line at position VPOS | |
| 562 and change whether it is highlighted. */ | |
| 563 | |
| 564 change_line_highlight (new_highlight, vpos, first_unused_hpos) | |
| 565 int new_highlight, vpos, first_unused_hpos; | |
| 566 { | |
| 567 standout_requested = new_highlight; | |
|
969
16649ee21625
* term.c (FRAME_IS_TERMCAP, FRAME_IS_X, FRAME_HAS_MINIBUF):
Jim Blandy <jimb@redhat.com>
parents:
797
diff
changeset
|
568 if (! FRAME_TERMCAP_P (updating_frame)) |
| 253 | 569 { |
| 570 (*change_line_highlight_hook) (new_highlight, vpos, first_unused_hpos); | |
| 571 return; | |
| 572 } | |
| 573 | |
| 574 cursor_to (vpos, 0); | |
| 575 | |
| 576 if (TN_standout_width < 0) | |
| 577 background_highlight (); | |
| 578 /* If line starts with a marker, delete the marker */ | |
| 579 else if (TS_clr_line && chars_wasted[curY]) | |
| 580 { | |
| 581 turn_off_insert (); | |
| 582 /* On Teleray, make sure to erase the SO marker. */ | |
| 583 if (TF_teleray) | |
| 584 { | |
| 765 | 585 cmgoto (curY - 1, FRAME_WIDTH (selected_frame) - 4); |
| 253 | 586 OUTPUT ("\033S"); |
| 587 curY++; /* ESC S moves to next line where the TS_standout_mode was */ | |
| 588 curX = 0; | |
| 589 } | |
| 590 else | |
| 591 cmgoto (curY, 0); /* reposition to kill standout marker */ | |
| 592 } | |
| 593 clear_end_of_line_raw (first_unused_hpos); | |
| 594 reassert_line_highlight (new_highlight, curY); | |
| 595 } | |
| 596 | |
| 597 | |
| 598 /* Move to absolute position, specified origin 0 */ | |
| 599 | |
| 600 cursor_to (row, col) | |
| 621 | 601 int row, col; |
| 253 | 602 { |
|
969
16649ee21625
* term.c (FRAME_IS_TERMCAP, FRAME_IS_X, FRAME_HAS_MINIBUF):
Jim Blandy <jimb@redhat.com>
parents:
797
diff
changeset
|
603 if (! FRAME_TERMCAP_P ((updating_frame |
| 765 | 604 ? updating_frame |
| 605 : selected_frame)) | |
| 253 | 606 && cursor_to_hook) |
| 607 { | |
| 608 (*cursor_to_hook) (row, col); | |
| 609 return; | |
| 610 } | |
| 611 | |
|
12071
f85f23c50344
(cursor_to, clear_to_end_of_line_raw):
Karl Heuer <kwzh@gnu.org>
parents:
11530
diff
changeset
|
612 /* Detect the case where we are called from reset_sys_modes |
|
f85f23c50344
(cursor_to, clear_to_end_of_line_raw):
Karl Heuer <kwzh@gnu.org>
parents:
11530
diff
changeset
|
613 and the costs have never been calculated. Do nothing. */ |
|
f85f23c50344
(cursor_to, clear_to_end_of_line_raw):
Karl Heuer <kwzh@gnu.org>
parents:
11530
diff
changeset
|
614 if (chars_wasted == 0) |
|
f85f23c50344
(cursor_to, clear_to_end_of_line_raw):
Karl Heuer <kwzh@gnu.org>
parents:
11530
diff
changeset
|
615 return; |
|
f85f23c50344
(cursor_to, clear_to_end_of_line_raw):
Karl Heuer <kwzh@gnu.org>
parents:
11530
diff
changeset
|
616 |
| 253 | 617 col += chars_wasted[row] & 077; |
| 618 if (curY == row && curX == col) | |
| 619 return; | |
| 620 if (!TF_standout_motion) | |
| 621 background_highlight (); | |
| 622 if (!TF_insmode_motion) | |
| 623 turn_off_insert (); | |
| 624 cmgoto (row, col); | |
| 625 } | |
| 626 | |
| 627 /* Similar but don't take any account of the wasted characters. */ | |
| 628 | |
| 629 raw_cursor_to (row, col) | |
| 621 | 630 int row, col; |
| 253 | 631 { |
|
969
16649ee21625
* term.c (FRAME_IS_TERMCAP, FRAME_IS_X, FRAME_HAS_MINIBUF):
Jim Blandy <jimb@redhat.com>
parents:
797
diff
changeset
|
632 if (! FRAME_TERMCAP_P ((updating_frame ? updating_frame : selected_frame))) |
| 253 | 633 { |
| 634 (*raw_cursor_to_hook) (row, col); | |
| 635 return; | |
| 636 } | |
| 637 if (curY == row && curX == col) | |
| 638 return; | |
| 639 if (!TF_standout_motion) | |
| 640 background_highlight (); | |
| 641 if (!TF_insmode_motion) | |
| 642 turn_off_insert (); | |
| 643 cmgoto (row, col); | |
| 644 } | |
| 645 | |
| 646 /* Erase operations */ | |
| 647 | |
| 765 | 648 /* clear from cursor to end of frame */ |
| 253 | 649 clear_to_end () |
| 650 { | |
| 651 register int i; | |
| 652 | |
|
8806
2d3bfce2e1f0
(clear_to_end): Fix reversed condition.
Karl Heuer <kwzh@gnu.org>
parents:
8612
diff
changeset
|
653 if (clear_to_end_hook && ! FRAME_TERMCAP_P (updating_frame)) |
| 253 | 654 { |
| 655 (*clear_to_end_hook) (); | |
| 656 return; | |
| 657 } | |
| 658 if (TS_clr_to_bottom) | |
| 659 { | |
| 660 background_highlight (); | |
| 661 OUTPUT (TS_clr_to_bottom); | |
| 765 | 662 bzero (chars_wasted + curY, FRAME_HEIGHT (selected_frame) - curY); |
| 253 | 663 } |
| 664 else | |
| 665 { | |
| 765 | 666 for (i = curY; i < FRAME_HEIGHT (selected_frame); i++) |
| 253 | 667 { |
| 668 cursor_to (i, 0); | |
| 765 | 669 clear_end_of_line_raw (FRAME_WIDTH (selected_frame)); |
| 253 | 670 } |
| 671 } | |
| 672 } | |
| 673 | |
| 765 | 674 /* Clear entire frame */ |
| 253 | 675 |
| 765 | 676 clear_frame () |
| 253 | 677 { |
| 765 | 678 if (clear_frame_hook |
|
969
16649ee21625
* term.c (FRAME_IS_TERMCAP, FRAME_IS_X, FRAME_HAS_MINIBUF):
Jim Blandy <jimb@redhat.com>
parents:
797
diff
changeset
|
679 && ! FRAME_TERMCAP_P ((updating_frame ? updating_frame : selected_frame))) |
| 253 | 680 { |
| 765 | 681 (*clear_frame_hook) (); |
| 253 | 682 return; |
| 683 } | |
| 765 | 684 if (TS_clr_frame) |
| 253 | 685 { |
| 686 background_highlight (); | |
| 765 | 687 OUTPUT (TS_clr_frame); |
| 688 bzero (chars_wasted, FRAME_HEIGHT (selected_frame)); | |
| 253 | 689 cmat (0, 0); |
| 690 } | |
| 691 else | |
| 692 { | |
| 693 cursor_to (0, 0); | |
| 694 clear_to_end (); | |
| 695 } | |
| 696 } | |
| 697 | |
| 698 /* Clear to end of line, but do not clear any standout marker. | |
| 699 Assumes that the cursor is positioned at a character of real text, | |
| 700 which implies it cannot be before a standout marker | |
| 701 unless the marker has zero width. | |
| 702 | |
| 703 Note that the cursor may be moved. */ | |
| 704 | |
| 705 clear_end_of_line (first_unused_hpos) | |
| 706 int first_unused_hpos; | |
| 707 { | |
|
1015
58c373be762c
* term.c (term_get_fkeys): Some systems define `static' to be the
Jim Blandy <jimb@redhat.com>
parents:
969
diff
changeset
|
708 static GLYPH buf = SPACEGLYPH; |
|
969
16649ee21625
* term.c (FRAME_IS_TERMCAP, FRAME_IS_X, FRAME_HAS_MINIBUF):
Jim Blandy <jimb@redhat.com>
parents:
797
diff
changeset
|
709 if (FRAME_TERMCAP_P (selected_frame) |
|
12071
f85f23c50344
(cursor_to, clear_to_end_of_line_raw):
Karl Heuer <kwzh@gnu.org>
parents:
11530
diff
changeset
|
710 && chars_wasted != 0 |
| 253 | 711 && TN_standout_width == 0 && curX == 0 && chars_wasted[curY] != 0) |
|
1015
58c373be762c
* term.c (term_get_fkeys): Some systems define `static' to be the
Jim Blandy <jimb@redhat.com>
parents:
969
diff
changeset
|
712 write_glyphs (&buf, 1); |
| 253 | 713 clear_end_of_line_raw (first_unused_hpos); |
| 714 } | |
| 715 | |
| 716 /* Clear from cursor to end of line. | |
| 717 Assume that the line is already clear starting at column first_unused_hpos. | |
| 718 If the cursor is at a standout marker, erase the marker. | |
| 719 | |
| 720 Note that the cursor may be moved, on terminals lacking a `ce' string. */ | |
| 721 | |
| 722 clear_end_of_line_raw (first_unused_hpos) | |
| 723 int first_unused_hpos; | |
| 724 { | |
| 725 register int i; | |
| 726 | |
| 727 if (clear_end_of_line_hook | |
|
969
16649ee21625
* term.c (FRAME_IS_TERMCAP, FRAME_IS_X, FRAME_HAS_MINIBUF):
Jim Blandy <jimb@redhat.com>
parents:
797
diff
changeset
|
728 && ! FRAME_TERMCAP_P ((updating_frame |
| 765 | 729 ? updating_frame |
| 730 : selected_frame))) | |
| 253 | 731 { |
| 732 (*clear_end_of_line_hook) (first_unused_hpos); | |
| 733 return; | |
| 734 } | |
| 735 | |
|
12071
f85f23c50344
(cursor_to, clear_to_end_of_line_raw):
Karl Heuer <kwzh@gnu.org>
parents:
11530
diff
changeset
|
736 /* Detect the case where we are called from reset_sys_modes |
|
f85f23c50344
(cursor_to, clear_to_end_of_line_raw):
Karl Heuer <kwzh@gnu.org>
parents:
11530
diff
changeset
|
737 and the costs have never been calculated. Do nothing. */ |
|
f85f23c50344
(cursor_to, clear_to_end_of_line_raw):
Karl Heuer <kwzh@gnu.org>
parents:
11530
diff
changeset
|
738 if (chars_wasted == 0) |
|
f85f23c50344
(cursor_to, clear_to_end_of_line_raw):
Karl Heuer <kwzh@gnu.org>
parents:
11530
diff
changeset
|
739 return; |
|
f85f23c50344
(cursor_to, clear_to_end_of_line_raw):
Karl Heuer <kwzh@gnu.org>
parents:
11530
diff
changeset
|
740 |
| 253 | 741 first_unused_hpos += chars_wasted[curY] & 077; |
| 742 if (curX >= first_unused_hpos) | |
| 743 return; | |
| 744 /* Notice if we are erasing a magic cookie */ | |
| 745 if (curX == 0) | |
| 746 chars_wasted[curY] = 0; | |
| 747 background_highlight (); | |
| 748 if (TS_clr_line) | |
| 749 { | |
| 750 OUTPUT1 (TS_clr_line); | |
| 751 } | |
| 752 else | |
| 753 { /* have to do it the hard way */ | |
| 754 turn_off_insert (); | |
| 755 | |
| 756 /* Do not write in last row last col with Autowrap on. */ | |
| 765 | 757 if (AutoWrap && curY == FRAME_HEIGHT (selected_frame) - 1 |
| 758 && first_unused_hpos == FRAME_WIDTH (selected_frame)) | |
| 253 | 759 first_unused_hpos--; |
| 760 | |
| 761 for (i = curX; i < first_unused_hpos; i++) | |
| 762 { | |
| 763 if (termscript) | |
| 764 fputc (' ', termscript); | |
| 765 putchar (' '); | |
| 766 } | |
| 767 cmplus (first_unused_hpos - curX); | |
| 768 } | |
| 769 } | |
| 770 | |
|
17046
84b0e9794a87
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16894
diff
changeset
|
771 /* Encode SRC_LEN glyphs starting at SRC to terminal output codes and |
|
84b0e9794a87
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16894
diff
changeset
|
772 store them at DST. Do not write more than DST_LEN bytes. That may |
|
84b0e9794a87
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16894
diff
changeset
|
773 require stopping before all SRC_LEN input glyphs have been |
|
84b0e9794a87
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16894
diff
changeset
|
774 converted. |
|
84b0e9794a87
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16894
diff
changeset
|
775 |
|
84b0e9794a87
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16894
diff
changeset
|
776 We store the number of glyphs actually converted in *CONSUMED. The |
|
84b0e9794a87
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16894
diff
changeset
|
777 return value is the number of bytes store in DST. */ |
|
84b0e9794a87
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16894
diff
changeset
|
778 |
|
84b0e9794a87
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16894
diff
changeset
|
779 int |
|
84b0e9794a87
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16894
diff
changeset
|
780 encode_terminal_code (src, dst, src_len, dst_len, consumed) |
|
84b0e9794a87
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16894
diff
changeset
|
781 GLYPH *src; |
|
84b0e9794a87
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16894
diff
changeset
|
782 int src_len; |
|
84b0e9794a87
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16894
diff
changeset
|
783 unsigned char *dst; |
|
84b0e9794a87
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16894
diff
changeset
|
784 int dst_len, *consumed; |
|
84b0e9794a87
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16894
diff
changeset
|
785 { |
|
84b0e9794a87
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16894
diff
changeset
|
786 GLYPH *src_start = src, *src_end = src + src_len; |
|
84b0e9794a87
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16894
diff
changeset
|
787 unsigned char *dst_start = dst, *dst_end = dst + dst_len; |
|
17180
364327df6e7c
(encode_terminal_code): Check validity of character code.
Kenichi Handa <handa@m17n.org>
parents:
17046
diff
changeset
|
788 register GLYPH g; |
|
364327df6e7c
(encode_terminal_code): Check validity of character code.
Kenichi Handa <handa@m17n.org>
parents:
17046
diff
changeset
|
789 unsigned int c; |
|
17046
84b0e9794a87
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16894
diff
changeset
|
790 unsigned char workbuf[4], *buf; |
|
84b0e9794a87
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16894
diff
changeset
|
791 int len, produced, processed; |
|
84b0e9794a87
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16894
diff
changeset
|
792 register int tlen = GLYPH_TABLE_LENGTH; |
|
84b0e9794a87
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16894
diff
changeset
|
793 register Lisp_Object *tbase = GLYPH_TABLE_BASE; |
|
84b0e9794a87
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16894
diff
changeset
|
794 |
|
84b0e9794a87
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16894
diff
changeset
|
795 while (src < src_end) |
|
84b0e9794a87
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16894
diff
changeset
|
796 { |
|
84b0e9794a87
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16894
diff
changeset
|
797 g = *src; |
|
84b0e9794a87
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16894
diff
changeset
|
798 /* We must skip glyphs to be padded for a wide character. */ |
|
84b0e9794a87
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16894
diff
changeset
|
799 if (! (g & GLYPH_MASK_PADDING)) |
|
84b0e9794a87
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16894
diff
changeset
|
800 { |
|
17180
364327df6e7c
(encode_terminal_code): Check validity of character code.
Kenichi Handa <handa@m17n.org>
parents:
17046
diff
changeset
|
801 if ((c = GLYPH_CHAR (selected_frame, g)) > MAX_CHAR) |
|
364327df6e7c
(encode_terminal_code): Check validity of character code.
Kenichi Handa <handa@m17n.org>
parents:
17046
diff
changeset
|
802 { |
|
364327df6e7c
(encode_terminal_code): Check validity of character code.
Kenichi Handa <handa@m17n.org>
parents:
17046
diff
changeset
|
803 c = ' '; |
|
364327df6e7c
(encode_terminal_code): Check validity of character code.
Kenichi Handa <handa@m17n.org>
parents:
17046
diff
changeset
|
804 g = MAKE_GLYPH (selected_frame, c, |
|
364327df6e7c
(encode_terminal_code): Check validity of character code.
Kenichi Handa <handa@m17n.org>
parents:
17046
diff
changeset
|
805 GLYPH_FACE (selected_frame, g)); |
|
364327df6e7c
(encode_terminal_code): Check validity of character code.
Kenichi Handa <handa@m17n.org>
parents:
17046
diff
changeset
|
806 } |
|
17046
84b0e9794a87
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16894
diff
changeset
|
807 if (COMPOSITE_CHAR_P (c)) |
|
84b0e9794a87
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16894
diff
changeset
|
808 { |
|
84b0e9794a87
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16894
diff
changeset
|
809 /* If C is a composite character, we can display |
|
84b0e9794a87
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16894
diff
changeset
|
810 only the first component. */ |
|
84b0e9794a87
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16894
diff
changeset
|
811 g = cmpchar_table[COMPOSITE_CHAR_ID (c)]->glyph[0], |
|
84b0e9794a87
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16894
diff
changeset
|
812 c = GLYPH_CHAR (selected_frame, g); |
|
84b0e9794a87
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16894
diff
changeset
|
813 } |
|
84b0e9794a87
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16894
diff
changeset
|
814 if (c < tlen) |
|
84b0e9794a87
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16894
diff
changeset
|
815 { |
|
84b0e9794a87
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16894
diff
changeset
|
816 /* G has an entry in Vglyph_table, |
|
84b0e9794a87
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16894
diff
changeset
|
817 so process any alias before testing for simpleness. */ |
|
84b0e9794a87
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16894
diff
changeset
|
818 GLYPH_FOLLOW_ALIASES (tbase, tlen, g); |
|
84b0e9794a87
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16894
diff
changeset
|
819 c = GLYPH_CHAR (selected_frame, g); |
|
84b0e9794a87
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16894
diff
changeset
|
820 } |
|
84b0e9794a87
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16894
diff
changeset
|
821 if (GLYPH_SIMPLE_P (tbase, tlen, g)) |
|
84b0e9794a87
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16894
diff
changeset
|
822 /* We set the multi-byte form of C at BUF. */ |
|
84b0e9794a87
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16894
diff
changeset
|
823 len = CHAR_STRING (c, workbuf, buf); |
|
84b0e9794a87
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16894
diff
changeset
|
824 else |
|
17180
364327df6e7c
(encode_terminal_code): Check validity of character code.
Kenichi Handa <handa@m17n.org>
parents:
17046
diff
changeset
|
825 /* We have a string in Vglyph_table. */ |
|
17046
84b0e9794a87
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16894
diff
changeset
|
826 len = GLYPH_LENGTH (tbase, g), buf = GLYPH_STRING (tbase, g); |
|
84b0e9794a87
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16894
diff
changeset
|
827 |
|
84b0e9794a87
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16894
diff
changeset
|
828 produced = encode_coding (&terminal_coding, buf, dst, |
|
84b0e9794a87
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16894
diff
changeset
|
829 len, dst_end - dst, &processed); |
|
84b0e9794a87
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16894
diff
changeset
|
830 if (processed < len) |
|
84b0e9794a87
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16894
diff
changeset
|
831 /* We get a carryover because the remaining output |
|
84b0e9794a87
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16894
diff
changeset
|
832 buffer is too short. We must break the loop here |
|
84b0e9794a87
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16894
diff
changeset
|
833 without increasing SRC so that the next call of |
|
84b0e9794a87
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16894
diff
changeset
|
834 this function start from the same glyph. */ |
|
84b0e9794a87
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16894
diff
changeset
|
835 break; |
|
84b0e9794a87
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16894
diff
changeset
|
836 dst += produced; |
|
84b0e9794a87
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16894
diff
changeset
|
837 } |
|
84b0e9794a87
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16894
diff
changeset
|
838 src++; |
|
84b0e9794a87
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16894
diff
changeset
|
839 } |
|
84b0e9794a87
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16894
diff
changeset
|
840 *consumed = src - src_start; |
|
84b0e9794a87
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16894
diff
changeset
|
841 return (dst - dst_start); |
|
84b0e9794a87
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16894
diff
changeset
|
842 } |
|
84b0e9794a87
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16894
diff
changeset
|
843 |
| 253 | 844 |
| 845 write_glyphs (string, len) | |
| 846 register GLYPH *string; | |
| 847 register int len; | |
| 848 { | |
| 849 register GLYPH g; | |
| 850 register int tlen = GLYPH_TABLE_LENGTH; | |
| 851 register Lisp_Object *tbase = GLYPH_TABLE_BASE; | |
|
17046
84b0e9794a87
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16894
diff
changeset
|
852 int produced, consumed; |
| 253 | 853 |
| 854 if (write_glyphs_hook | |
|
969
16649ee21625
* term.c (FRAME_IS_TERMCAP, FRAME_IS_X, FRAME_HAS_MINIBUF):
Jim Blandy <jimb@redhat.com>
parents:
797
diff
changeset
|
855 && ! FRAME_TERMCAP_P ((updating_frame ? updating_frame : selected_frame))) |
| 253 | 856 { |
| 857 (*write_glyphs_hook) (string, len); | |
| 858 return; | |
| 859 } | |
| 860 | |
| 861 highlight_if_desired (); | |
| 862 turn_off_insert (); | |
| 863 | |
| 864 /* Don't dare write in last column of bottom line, if AutoWrap, | |
| 765 | 865 since that would scroll the whole frame on some terminals. */ |
| 253 | 866 |
| 867 if (AutoWrap | |
| 765 | 868 && curY + 1 == FRAME_HEIGHT (selected_frame) |
| 253 | 869 && (curX + len - (chars_wasted[curY] & 077) |
| 765 | 870 == FRAME_WIDTH (selected_frame))) |
| 253 | 871 len --; |
|
17046
84b0e9794a87
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16894
diff
changeset
|
872 if (len <= 0) |
|
84b0e9794a87
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16894
diff
changeset
|
873 return; |
| 253 | 874 |
| 875 cmplus (len); | |
|
17046
84b0e9794a87
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16894
diff
changeset
|
876 /* The field `last_block' should be set to 1 only at the tail. */ |
|
84b0e9794a87
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16894
diff
changeset
|
877 terminal_coding.last_block = 0; |
|
84b0e9794a87
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16894
diff
changeset
|
878 while (len > 0) |
| 253 | 879 { |
|
17046
84b0e9794a87
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16894
diff
changeset
|
880 /* We use shared conversion buffer of the current size (1024 |
|
84b0e9794a87
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16894
diff
changeset
|
881 bytes at least). Usually it is sufficient, but if not, we |
|
84b0e9794a87
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16894
diff
changeset
|
882 just repeat the loop. */ |
|
84b0e9794a87
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16894
diff
changeset
|
883 produced = encode_terminal_code (string, conversion_buffer, |
|
84b0e9794a87
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16894
diff
changeset
|
884 len, conversion_buffer_size, &consumed); |
|
84b0e9794a87
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16894
diff
changeset
|
885 if (produced > 0) |
| 253 | 886 { |
|
17046
84b0e9794a87
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16894
diff
changeset
|
887 fwrite (conversion_buffer, 1, produced, stdout); |
| 253 | 888 if (ferror (stdout)) |
| 889 clearerr (stdout); | |
| 890 if (termscript) | |
|
17046
84b0e9794a87
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16894
diff
changeset
|
891 fwrite (conversion_buffer, 1, produced, termscript); |
| 253 | 892 } |
|
17046
84b0e9794a87
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16894
diff
changeset
|
893 len -= consumed; |
|
84b0e9794a87
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16894
diff
changeset
|
894 string += consumed; |
|
84b0e9794a87
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16894
diff
changeset
|
895 } |
|
84b0e9794a87
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16894
diff
changeset
|
896 /* We may have to output some codes to terminate the writing. */ |
|
84b0e9794a87
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16894
diff
changeset
|
897 terminal_coding.last_block = 1; |
|
84b0e9794a87
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16894
diff
changeset
|
898 produced = encode_coding (&terminal_coding, (char *)0, conversion_buffer, |
|
84b0e9794a87
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16894
diff
changeset
|
899 0, conversion_buffer_size, |
|
84b0e9794a87
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16894
diff
changeset
|
900 &consumed); |
|
84b0e9794a87
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16894
diff
changeset
|
901 if (produced > 0) |
|
84b0e9794a87
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16894
diff
changeset
|
902 { |
|
84b0e9794a87
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16894
diff
changeset
|
903 fwrite (conversion_buffer, 1, produced, stdout); |
|
84b0e9794a87
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16894
diff
changeset
|
904 if (ferror (stdout)) |
|
84b0e9794a87
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16894
diff
changeset
|
905 clearerr (stdout); |
|
84b0e9794a87
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16894
diff
changeset
|
906 if (termscript) |
|
84b0e9794a87
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16894
diff
changeset
|
907 fwrite (conversion_buffer, 1, produced, termscript); |
| 253 | 908 } |
|
10439
1fcbeb4410f6
(write_glyphs, insert_glyphs): Call checkmagic.
Karl Heuer <kwzh@gnu.org>
parents:
10332
diff
changeset
|
909 cmcheckmagic (); |
| 253 | 910 } |
| 911 | |
| 912 /* If start is zero, insert blanks instead of a string at start */ | |
| 913 | |
| 914 insert_glyphs (start, len) | |
| 915 register GLYPH *start; | |
| 916 register int len; | |
| 917 { | |
| 918 char *buf; | |
|
17046
84b0e9794a87
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16894
diff
changeset
|
919 GLYPH g; |
| 253 | 920 register int tlen = GLYPH_TABLE_LENGTH; |
| 921 register Lisp_Object *tbase = GLYPH_TABLE_BASE; | |
| 922 | |
|
17046
84b0e9794a87
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16894
diff
changeset
|
923 if (len <= 0) |
|
84b0e9794a87
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16894
diff
changeset
|
924 return; |
|
84b0e9794a87
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16894
diff
changeset
|
925 |
|
969
16649ee21625
* term.c (FRAME_IS_TERMCAP, FRAME_IS_X, FRAME_HAS_MINIBUF):
Jim Blandy <jimb@redhat.com>
parents:
797
diff
changeset
|
926 if (insert_glyphs_hook && ! FRAME_TERMCAP_P (updating_frame)) |
| 253 | 927 { |
| 928 (*insert_glyphs_hook) (start, len); | |
| 929 return; | |
| 930 } | |
| 931 highlight_if_desired (); | |
| 932 | |
| 933 if (TS_ins_multi_chars) | |
| 934 { | |
| 935 buf = tparam (TS_ins_multi_chars, 0, 0, len); | |
| 936 OUTPUT1 (buf); | |
|
2439
b6c62e4abf59
Put interrupt input blocking in a separate file from xterm.h.
Jim Blandy <jimb@redhat.com>
parents:
2243
diff
changeset
|
937 xfree (buf); |
| 253 | 938 if (start) |
| 939 write_glyphs (start, len); | |
| 940 return; | |
| 941 } | |
| 942 | |
| 943 turn_on_insert (); | |
| 944 cmplus (len); | |
|
17046
84b0e9794a87
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16894
diff
changeset
|
945 /* The field `last_block' should be set to 1 only at the tail. */ |
|
84b0e9794a87
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16894
diff
changeset
|
946 terminal_coding.last_block = 0; |
|
17191
36caec9c2e52
(insert_glyphs): Fix a bug which turns up when
Kenichi Handa <handa@m17n.org>
parents:
17180
diff
changeset
|
947 while (len-- > 0) |
| 253 | 948 { |
|
17046
84b0e9794a87
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16894
diff
changeset
|
949 int produced, consumed; |
|
84b0e9794a87
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16894
diff
changeset
|
950 |
| 253 | 951 OUTPUT1_IF (TS_ins_char); |
| 952 if (!start) | |
| 953 g = SPACEGLYPH; | |
| 954 else | |
|
17046
84b0e9794a87
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16894
diff
changeset
|
955 { |
|
84b0e9794a87
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16894
diff
changeset
|
956 g = *start++; |
|
84b0e9794a87
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16894
diff
changeset
|
957 /* We must open sufficient space for a character which |
|
84b0e9794a87
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16894
diff
changeset
|
958 occupies more than one column. */ |
|
84b0e9794a87
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16894
diff
changeset
|
959 while (*start && GLYPH_MASK_PADDING) |
|
84b0e9794a87
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16894
diff
changeset
|
960 { |
|
84b0e9794a87
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16894
diff
changeset
|
961 OUTPUT1_IF (TS_ins_char); |
|
84b0e9794a87
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16894
diff
changeset
|
962 start++, len--; |
|
84b0e9794a87
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16894
diff
changeset
|
963 } |
|
84b0e9794a87
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16894
diff
changeset
|
964 } |
| 253 | 965 |
|
17046
84b0e9794a87
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16894
diff
changeset
|
966 if (len <= 0) |
|
84b0e9794a87
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16894
diff
changeset
|
967 /* This is the last glyph. */ |
|
84b0e9794a87
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16894
diff
changeset
|
968 terminal_coding.last_block = 1; |
|
84b0e9794a87
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16894
diff
changeset
|
969 |
|
84b0e9794a87
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16894
diff
changeset
|
970 /* We use shared conversion buffer of the current size (1024 |
|
84b0e9794a87
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16894
diff
changeset
|
971 bytes at least). It is surely sufficient for just one glyph. */ |
|
84b0e9794a87
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16894
diff
changeset
|
972 produced = encode_terminal_code (&g, conversion_buffer, |
|
84b0e9794a87
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16894
diff
changeset
|
973 1, conversion_buffer_size, &consumed); |
|
84b0e9794a87
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16894
diff
changeset
|
974 if (produced > 0) |
| 253 | 975 { |
|
17046
84b0e9794a87
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16894
diff
changeset
|
976 fwrite (conversion_buffer, 1, produced, stdout); |
| 253 | 977 if (ferror (stdout)) |
| 978 clearerr (stdout); | |
| 979 if (termscript) | |
|
17046
84b0e9794a87
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16894
diff
changeset
|
980 fwrite (conversion_buffer, 1, produced, termscript); |
| 253 | 981 } |
| 982 | |
|
10439
1fcbeb4410f6
(write_glyphs, insert_glyphs): Call checkmagic.
Karl Heuer <kwzh@gnu.org>
parents:
10332
diff
changeset
|
983 OUTPUT1_IF (TS_pad_inserted_char); |
|
1fcbeb4410f6
(write_glyphs, insert_glyphs): Call checkmagic.
Karl Heuer <kwzh@gnu.org>
parents:
10332
diff
changeset
|
984 } |
|
1fcbeb4410f6
(write_glyphs, insert_glyphs): Call checkmagic.
Karl Heuer <kwzh@gnu.org>
parents:
10332
diff
changeset
|
985 cmcheckmagic (); |
| 253 | 986 } |
| 987 | |
| 988 delete_glyphs (n) | |
| 989 register int n; | |
| 990 { | |
| 991 char *buf; | |
| 992 register int i; | |
| 993 | |
|
969
16649ee21625
* term.c (FRAME_IS_TERMCAP, FRAME_IS_X, FRAME_HAS_MINIBUF):
Jim Blandy <jimb@redhat.com>
parents:
797
diff
changeset
|
994 if (delete_glyphs_hook && ! FRAME_TERMCAP_P (updating_frame)) |
| 253 | 995 { |
| 996 (*delete_glyphs_hook) (n); | |
| 997 return; | |
| 998 } | |
| 999 | |
| 1000 if (delete_in_insert_mode) | |
| 1001 { | |
| 1002 turn_on_insert (); | |
| 1003 } | |
| 1004 else | |
| 1005 { | |
| 1006 turn_off_insert (); | |
| 1007 OUTPUT_IF (TS_delete_mode); | |
| 1008 } | |
| 1009 | |
| 1010 if (TS_del_multi_chars) | |
| 1011 { | |
| 1012 buf = tparam (TS_del_multi_chars, 0, 0, n); | |
| 1013 OUTPUT1 (buf); | |
|
2439
b6c62e4abf59
Put interrupt input blocking in a separate file from xterm.h.
Jim Blandy <jimb@redhat.com>
parents:
2243
diff
changeset
|
1014 xfree (buf); |
| 253 | 1015 } |
| 1016 else | |
| 1017 for (i = 0; i < n; i++) | |
| 1018 OUTPUT1 (TS_del_char); | |
| 1019 if (!delete_in_insert_mode) | |
| 1020 OUTPUT_IF (TS_end_delete_mode); | |
| 1021 } | |
| 1022 | |
| 1023 /* Insert N lines at vpos VPOS. If N is negative, delete -N lines. */ | |
| 1024 | |
| 1025 ins_del_lines (vpos, n) | |
| 1026 int vpos, n; | |
| 1027 { | |
| 1028 char *multi = n > 0 ? TS_ins_multi_lines : TS_del_multi_lines; | |
| 1029 char *single = n > 0 ? TS_ins_line : TS_del_line; | |
| 1030 char *scroll = n > 0 ? TS_rev_scroll : TS_fwd_scroll; | |
| 1031 | |
| 1032 register int i = n > 0 ? n : -n; | |
| 1033 register char *buf; | |
| 1034 | |
|
969
16649ee21625
* term.c (FRAME_IS_TERMCAP, FRAME_IS_X, FRAME_HAS_MINIBUF):
Jim Blandy <jimb@redhat.com>
parents:
797
diff
changeset
|
1035 if (ins_del_lines_hook && ! FRAME_TERMCAP_P (updating_frame)) |
| 253 | 1036 { |
| 1037 (*ins_del_lines_hook) (vpos, n); | |
| 1038 return; | |
| 1039 } | |
| 1040 | |
| 1041 /* If the lines below the insertion are being pushed | |
| 1042 into the end of the window, this is the same as clearing; | |
| 1043 and we know the lines are already clear, since the matching | |
| 1044 deletion has already been done. So can ignore this. */ | |
| 1045 /* If the lines below the deletion are blank lines coming | |
| 1046 out of the end of the window, don't bother, | |
| 1047 as there will be a matching inslines later that will flush them. */ | |
| 1048 if (scroll_region_ok && vpos + i >= specified_window) | |
| 1049 return; | |
| 765 | 1050 if (!memory_below_frame && vpos + i >= FRAME_HEIGHT (selected_frame)) |
| 253 | 1051 return; |
| 1052 | |
| 1053 if (multi) | |
| 1054 { | |
| 1055 raw_cursor_to (vpos, 0); | |
| 1056 background_highlight (); | |
| 1057 buf = tparam (multi, 0, 0, i); | |
| 1058 OUTPUT (buf); | |
|
2439
b6c62e4abf59
Put interrupt input blocking in a separate file from xterm.h.
Jim Blandy <jimb@redhat.com>
parents:
2243
diff
changeset
|
1059 xfree (buf); |
| 253 | 1060 } |
| 1061 else if (single) | |
| 1062 { | |
| 1063 raw_cursor_to (vpos, 0); | |
| 1064 background_highlight (); | |
| 1065 while (--i >= 0) | |
| 1066 OUTPUT (single); | |
| 1067 if (TF_teleray) | |
| 1068 curX = 0; | |
| 1069 } | |
| 1070 else | |
| 1071 { | |
| 1072 set_scroll_region (vpos, specified_window); | |
| 1073 if (n < 0) | |
| 1074 raw_cursor_to (specified_window - 1, 0); | |
| 1075 else | |
| 1076 raw_cursor_to (vpos, 0); | |
| 1077 background_highlight (); | |
| 1078 while (--i >= 0) | |
| 1079 OUTPUTL (scroll, specified_window - vpos); | |
| 1080 set_scroll_region (0, specified_window); | |
| 1081 } | |
| 1082 | |
| 1083 if (TN_standout_width >= 0) | |
| 1084 { | |
| 1085 register lower_limit | |
| 1086 = (scroll_region_ok | |
| 1087 ? specified_window | |
| 765 | 1088 : FRAME_HEIGHT (selected_frame)); |
| 253 | 1089 |
| 1090 if (n < 0) | |
| 1091 { | |
| 1092 bcopy (&chars_wasted[vpos - n], &chars_wasted[vpos], | |
| 1093 lower_limit - vpos + n); | |
| 1094 bzero (&chars_wasted[lower_limit + n], - n); | |
| 1095 } | |
| 1096 else | |
| 1097 { | |
| 1098 bcopy (&chars_wasted[vpos], ©buf[vpos], lower_limit - vpos - n); | |
| 1099 bcopy (©buf[vpos], &chars_wasted[vpos + n], | |
| 1100 lower_limit - vpos - n); | |
| 1101 bzero (&chars_wasted[vpos], n); | |
| 1102 } | |
| 1103 } | |
| 765 | 1104 if (!scroll_region_ok && memory_below_frame && n < 0) |
| 253 | 1105 { |
| 765 | 1106 cursor_to (FRAME_HEIGHT (selected_frame) + n, 0); |
| 253 | 1107 clear_to_end (); |
| 1108 } | |
| 1109 } | |
| 1110 | |
| 1111 /* Compute cost of sending "str", in characters, | |
| 1112 not counting any line-dependent padding. */ | |
| 1113 | |
| 1114 int | |
| 1115 string_cost (str) | |
| 1116 char *str; | |
| 1117 { | |
| 1118 cost = 0; | |
| 1119 if (str) | |
| 1120 tputs (str, 0, evalcost); | |
| 1121 return cost; | |
| 1122 } | |
| 1123 | |
| 1124 /* Compute cost of sending "str", in characters, | |
| 1125 counting any line-dependent padding at one line. */ | |
| 1126 | |
| 1127 static int | |
| 1128 string_cost_one_line (str) | |
| 1129 char *str; | |
| 1130 { | |
| 1131 cost = 0; | |
| 1132 if (str) | |
| 1133 tputs (str, 1, evalcost); | |
| 1134 return cost; | |
| 1135 } | |
| 1136 | |
| 1137 /* Compute per line amount of line-dependent padding, | |
| 1138 in tenths of characters. */ | |
| 1139 | |
| 1140 int | |
| 1141 per_line_cost (str) | |
| 1142 register char *str; | |
| 1143 { | |
| 1144 cost = 0; | |
| 1145 if (str) | |
| 1146 tputs (str, 0, evalcost); | |
| 1147 cost = - cost; | |
| 1148 if (str) | |
| 1149 tputs (str, 10, evalcost); | |
| 1150 return cost; | |
| 1151 } | |
| 1152 | |
| 1153 #ifndef old | |
| 1154 /* char_ins_del_cost[n] is cost of inserting N characters. | |
|
10771
d564078d10c6
(calculate_costs): Update max_frame_height, max_frame_width.
Richard M. Stallman <rms@gnu.org>
parents:
10481
diff
changeset
|
1155 char_ins_del_cost[-n] is cost of deleting N characters. |
|
d564078d10c6
(calculate_costs): Update max_frame_height, max_frame_width.
Richard M. Stallman <rms@gnu.org>
parents:
10481
diff
changeset
|
1156 The length of this vector is based on max_frame_width. */ |
| 253 | 1157 |
| 1158 int *char_ins_del_vector; | |
| 1159 | |
| 765 | 1160 #define char_ins_del_cost(f) (&char_ins_del_vector[FRAME_WIDTH ((f))]) |
| 253 | 1161 #endif |
| 1162 | |
| 1163 /* ARGSUSED */ | |
| 1164 static void | |
| 765 | 1165 calculate_ins_del_char_costs (frame) |
| 1166 FRAME_PTR frame; | |
| 253 | 1167 { |
| 1168 int ins_startup_cost, del_startup_cost; | |
| 1169 int ins_cost_per_char, del_cost_per_char; | |
| 1170 register int i; | |
| 1171 register int *p; | |
| 1172 | |
| 1173 if (TS_ins_multi_chars) | |
| 1174 { | |
| 1175 ins_cost_per_char = 0; | |
| 1176 ins_startup_cost = string_cost_one_line (TS_ins_multi_chars); | |
| 1177 } | |
| 1178 else if (TS_ins_char || TS_pad_inserted_char | |
| 1179 || (TS_insert_mode && TS_end_insert_mode)) | |
| 1180 { | |
| 1181 ins_startup_cost = (30 * (string_cost (TS_insert_mode) | |
| 1182 + string_cost (TS_end_insert_mode))) / 100; | |
| 1183 ins_cost_per_char = (string_cost_one_line (TS_ins_char) | |
| 1184 + string_cost_one_line (TS_pad_inserted_char)); | |
| 1185 } | |
| 1186 else | |
| 1187 { | |
| 1188 ins_startup_cost = 9999; | |
| 1189 ins_cost_per_char = 0; | |
| 1190 } | |
| 1191 | |
| 1192 if (TS_del_multi_chars) | |
| 1193 { | |
| 1194 del_cost_per_char = 0; | |
| 1195 del_startup_cost = string_cost_one_line (TS_del_multi_chars); | |
| 1196 } | |
| 1197 else if (TS_del_char) | |
| 1198 { | |
| 1199 del_startup_cost = (string_cost (TS_delete_mode) | |
| 1200 + string_cost (TS_end_delete_mode)); | |
| 1201 if (delete_in_insert_mode) | |
| 1202 del_startup_cost /= 2; | |
| 1203 del_cost_per_char = string_cost_one_line (TS_del_char); | |
| 1204 } | |
| 1205 else | |
| 1206 { | |
| 1207 del_startup_cost = 9999; | |
| 1208 del_cost_per_char = 0; | |
| 1209 } | |
| 1210 | |
| 1211 /* Delete costs are at negative offsets */ | |
| 765 | 1212 p = &char_ins_del_cost (frame)[0]; |
|
14980
1659a0ea3c0c
(calculate_ins_del_char_costs): Use proper frame's width.
Richard M. Stallman <rms@gnu.org>
parents:
14186
diff
changeset
|
1213 for (i = FRAME_WIDTH (frame); --i >= 0;) |
| 253 | 1214 *--p = (del_startup_cost += del_cost_per_char); |
| 1215 | |
| 1216 /* Doing nothing is free */ | |
| 765 | 1217 p = &char_ins_del_cost (frame)[0]; |
| 253 | 1218 *p++ = 0; |
| 1219 | |
| 1220 /* Insert costs are at positive offsets */ | |
| 765 | 1221 for (i = FRAME_WIDTH (frame); --i >= 0;) |
| 253 | 1222 *p++ = (ins_startup_cost += ins_cost_per_char); |
| 1223 } | |
| 1224 | |
|
2179
327106b23181
Add extern declaration for do_line_insertion_deletion_costs.
Jim Blandy <jimb@redhat.com>
parents:
2158
diff
changeset
|
1225 extern do_line_insertion_deletion_costs (); |
|
327106b23181
Add extern declaration for do_line_insertion_deletion_costs.
Jim Blandy <jimb@redhat.com>
parents:
2158
diff
changeset
|
1226 |
| 765 | 1227 calculate_costs (frame) |
| 1228 FRAME_PTR frame; | |
| 253 | 1229 { |
|
10121
3f9f77a9488d
(calculate_costs): Set FRAME_COST_BAUD_RATE.
Richard M. Stallman <rms@gnu.org>
parents:
9797
diff
changeset
|
1230 register char *f = (TS_set_scroll_region |
|
3f9f77a9488d
(calculate_costs): Set FRAME_COST_BAUD_RATE.
Richard M. Stallman <rms@gnu.org>
parents:
9797
diff
changeset
|
1231 ? TS_set_scroll_region |
|
3f9f77a9488d
(calculate_costs): Set FRAME_COST_BAUD_RATE.
Richard M. Stallman <rms@gnu.org>
parents:
9797
diff
changeset
|
1232 : TS_set_scroll_region_1); |
| 253 | 1233 |
|
10121
3f9f77a9488d
(calculate_costs): Set FRAME_COST_BAUD_RATE.
Richard M. Stallman <rms@gnu.org>
parents:
9797
diff
changeset
|
1234 FRAME_COST_BAUD_RATE (frame) = baud_rate; |
| 253 | 1235 |
|
10261
4fd304db9216
(scroll_region_cost): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
10121
diff
changeset
|
1236 scroll_region_cost = string_cost (f); |
| 253 | 1237 #ifdef HAVE_X_WINDOWS |
|
969
16649ee21625
* term.c (FRAME_IS_TERMCAP, FRAME_IS_X, FRAME_HAS_MINIBUF):
Jim Blandy <jimb@redhat.com>
parents:
797
diff
changeset
|
1238 if (FRAME_X_P (frame)) |
| 253 | 1239 { |
| 765 | 1240 do_line_insertion_deletion_costs (frame, 0, ".5*", 0, ".5*", |
|
9658
4e0d87055e0c
(calculate_costs): Call x_screen_planes.
Richard M. Stallman <rms@gnu.org>
parents:
9524
diff
changeset
|
1241 0, 0, |
|
4e0d87055e0c
(calculate_costs): Call x_screen_planes.
Richard M. Stallman <rms@gnu.org>
parents:
9524
diff
changeset
|
1242 x_screen_planes (frame)); |
|
10261
4fd304db9216
(scroll_region_cost): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
10121
diff
changeset
|
1243 scroll_region_cost = 0; |
| 253 | 1244 return; |
| 1245 } | |
| 1246 #endif | |
| 1247 | |
| 1248 /* These variables are only used for terminal stuff. They are allocated | |
| 765 | 1249 once for the terminal frame of X-windows emacs, but not used afterwards. |
| 253 | 1250 |
| 1251 char_ins_del_vector (i.e., char_ins_del_cost) isn't used because | |
| 1252 X turns off char_ins_del_ok. | |
| 1253 | |
| 1254 chars_wasted and copybuf are only used here in term.c in cases where | |
| 1255 the term hook isn't called. */ | |
| 1256 | |
|
10771
d564078d10c6
(calculate_costs): Update max_frame_height, max_frame_width.
Richard M. Stallman <rms@gnu.org>
parents:
10481
diff
changeset
|
1257 max_frame_height = max (max_frame_height, FRAME_HEIGHT (frame)); |
|
d564078d10c6
(calculate_costs): Update max_frame_height, max_frame_width.
Richard M. Stallman <rms@gnu.org>
parents:
10481
diff
changeset
|
1258 max_frame_width = max (max_frame_width, FRAME_WIDTH (frame)); |
|
d564078d10c6
(calculate_costs): Update max_frame_height, max_frame_width.
Richard M. Stallman <rms@gnu.org>
parents:
10481
diff
changeset
|
1259 |
| 253 | 1260 if (chars_wasted != 0) |
|
10771
d564078d10c6
(calculate_costs): Update max_frame_height, max_frame_width.
Richard M. Stallman <rms@gnu.org>
parents:
10481
diff
changeset
|
1261 chars_wasted = (char *) xrealloc (chars_wasted, max_frame_height); |
| 253 | 1262 else |
|
10771
d564078d10c6
(calculate_costs): Update max_frame_height, max_frame_width.
Richard M. Stallman <rms@gnu.org>
parents:
10481
diff
changeset
|
1263 chars_wasted = (char *) xmalloc (max_frame_height); |
| 253 | 1264 |
| 1265 if (copybuf != 0) | |
|
10771
d564078d10c6
(calculate_costs): Update max_frame_height, max_frame_width.
Richard M. Stallman <rms@gnu.org>
parents:
10481
diff
changeset
|
1266 copybuf = (char *) xrealloc (copybuf, max_frame_height); |
| 253 | 1267 else |
|
10771
d564078d10c6
(calculate_costs): Update max_frame_height, max_frame_width.
Richard M. Stallman <rms@gnu.org>
parents:
10481
diff
changeset
|
1268 copybuf = (char *) xmalloc (max_frame_height); |
| 253 | 1269 |
| 1270 if (char_ins_del_vector != 0) | |
| 1271 char_ins_del_vector | |
| 1272 = (int *) xrealloc (char_ins_del_vector, | |
| 1273 (sizeof (int) | |
|
10771
d564078d10c6
(calculate_costs): Update max_frame_height, max_frame_width.
Richard M. Stallman <rms@gnu.org>
parents:
10481
diff
changeset
|
1274 + 2 * max_frame_width * sizeof (int))); |
| 253 | 1275 else |
| 1276 char_ins_del_vector | |
| 1277 = (int *) xmalloc (sizeof (int) | |
|
10771
d564078d10c6
(calculate_costs): Update max_frame_height, max_frame_width.
Richard M. Stallman <rms@gnu.org>
parents:
10481
diff
changeset
|
1278 + 2 * max_frame_width * sizeof (int)); |
| 253 | 1279 |
|
10771
d564078d10c6
(calculate_costs): Update max_frame_height, max_frame_width.
Richard M. Stallman <rms@gnu.org>
parents:
10481
diff
changeset
|
1280 bzero (chars_wasted, max_frame_height); |
|
d564078d10c6
(calculate_costs): Update max_frame_height, max_frame_width.
Richard M. Stallman <rms@gnu.org>
parents:
10481
diff
changeset
|
1281 bzero (copybuf, max_frame_height); |
| 253 | 1282 bzero (char_ins_del_vector, (sizeof (int) |
|
10771
d564078d10c6
(calculate_costs): Update max_frame_height, max_frame_width.
Richard M. Stallman <rms@gnu.org>
parents:
10481
diff
changeset
|
1283 + 2 * max_frame_width * sizeof (int))); |
| 253 | 1284 |
| 765 | 1285 if (f && (!TS_ins_line && !TS_del_line)) |
| 1286 do_line_insertion_deletion_costs (frame, | |
| 253 | 1287 TS_rev_scroll, TS_ins_multi_lines, |
| 1288 TS_fwd_scroll, TS_del_multi_lines, | |
| 765 | 1289 f, f, 1); |
| 253 | 1290 else |
| 765 | 1291 do_line_insertion_deletion_costs (frame, |
| 253 | 1292 TS_ins_line, TS_ins_multi_lines, |
| 1293 TS_del_line, TS_del_multi_lines, | |
| 1294 0, 0, 1); | |
| 1295 | |
| 765 | 1296 calculate_ins_del_char_costs (frame); |
| 253 | 1297 |
| 1298 /* Don't use TS_repeat if its padding is worse than sending the chars */ | |
| 1299 if (TS_repeat && per_line_cost (TS_repeat) * baud_rate < 9000) | |
| 1300 RPov = string_cost (TS_repeat); | |
| 1301 else | |
| 765 | 1302 RPov = FRAME_WIDTH (frame) * 2; |
| 253 | 1303 |
| 1304 cmcostinit (); /* set up cursor motion costs */ | |
| 1305 } | |
| 1306 | |
|
1015
58c373be762c
* term.c (term_get_fkeys): Some systems define `static' to be the
Jim Blandy <jimb@redhat.com>
parents:
969
diff
changeset
|
1307 struct fkey_table { |
|
58c373be762c
* term.c (term_get_fkeys): Some systems define `static' to be the
Jim Blandy <jimb@redhat.com>
parents:
969
diff
changeset
|
1308 char *cap, *name; |
|
58c373be762c
* term.c (term_get_fkeys): Some systems define `static' to be the
Jim Blandy <jimb@redhat.com>
parents:
969
diff
changeset
|
1309 }; |
|
58c373be762c
* term.c (term_get_fkeys): Some systems define `static' to be the
Jim Blandy <jimb@redhat.com>
parents:
969
diff
changeset
|
1310 |
|
2137
8e4d2d1e7c66
Added lots more cookies to fkey_table[], and code to do even more.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1994
diff
changeset
|
1311 /* Termcap capability names that correspond directly to X keysyms. |
|
8e4d2d1e7c66
Added lots more cookies to fkey_table[], and code to do even more.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1994
diff
changeset
|
1312 Some of these (marked "terminfo") aren't supplied by old-style |
|
8e4d2d1e7c66
Added lots more cookies to fkey_table[], and code to do even more.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1994
diff
changeset
|
1313 (Berkeley) termcap entries. They're listed in X keysym order; |
|
8e4d2d1e7c66
Added lots more cookies to fkey_table[], and code to do even more.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1994
diff
changeset
|
1314 except we put the keypad keys first, so that if they clash with |
|
8e4d2d1e7c66
Added lots more cookies to fkey_table[], and code to do even more.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1994
diff
changeset
|
1315 other keys (as on the IBM PC keyboard) they get overridden. |
|
8e4d2d1e7c66
Added lots more cookies to fkey_table[], and code to do even more.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1994
diff
changeset
|
1316 */ |
|
8e4d2d1e7c66
Added lots more cookies to fkey_table[], and code to do even more.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1994
diff
changeset
|
1317 |
|
1015
58c373be762c
* term.c (term_get_fkeys): Some systems define `static' to be the
Jim Blandy <jimb@redhat.com>
parents:
969
diff
changeset
|
1318 static struct fkey_table keys[] = { |
|
2137
8e4d2d1e7c66
Added lots more cookies to fkey_table[], and code to do even more.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1994
diff
changeset
|
1319 "kh", "home", /* termcap */ |
|
8e4d2d1e7c66
Added lots more cookies to fkey_table[], and code to do even more.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1994
diff
changeset
|
1320 "kl", "left", /* termcap */ |
|
8e4d2d1e7c66
Added lots more cookies to fkey_table[], and code to do even more.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1994
diff
changeset
|
1321 "ku", "up", /* termcap */ |
|
8e4d2d1e7c66
Added lots more cookies to fkey_table[], and code to do even more.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1994
diff
changeset
|
1322 "kr", "right", /* termcap */ |
|
8e4d2d1e7c66
Added lots more cookies to fkey_table[], and code to do even more.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1994
diff
changeset
|
1323 "kd", "down", /* termcap */ |
|
8e4d2d1e7c66
Added lots more cookies to fkey_table[], and code to do even more.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1994
diff
changeset
|
1324 "%8", "prior", /* terminfo */ |
|
8e4d2d1e7c66
Added lots more cookies to fkey_table[], and code to do even more.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1994
diff
changeset
|
1325 "%5", "next", /* terminfo */ |
|
8e4d2d1e7c66
Added lots more cookies to fkey_table[], and code to do even more.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1994
diff
changeset
|
1326 "@7", "end", /* terminfo */ |
|
8e4d2d1e7c66
Added lots more cookies to fkey_table[], and code to do even more.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1994
diff
changeset
|
1327 "@1", "begin", /* terminfo */ |
|
8e4d2d1e7c66
Added lots more cookies to fkey_table[], and code to do even more.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1994
diff
changeset
|
1328 "*6", "select", /* terminfo */ |
|
8e4d2d1e7c66
Added lots more cookies to fkey_table[], and code to do even more.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1994
diff
changeset
|
1329 "%9", "print", /* terminfo */ |
|
8e4d2d1e7c66
Added lots more cookies to fkey_table[], and code to do even more.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1994
diff
changeset
|
1330 "@4", "execute", /* terminfo --- actually the `command' key */ |
|
8e4d2d1e7c66
Added lots more cookies to fkey_table[], and code to do even more.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1994
diff
changeset
|
1331 /* |
|
8e4d2d1e7c66
Added lots more cookies to fkey_table[], and code to do even more.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1994
diff
changeset
|
1332 * "insert" --- see below |
|
8e4d2d1e7c66
Added lots more cookies to fkey_table[], and code to do even more.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1994
diff
changeset
|
1333 */ |
|
8e4d2d1e7c66
Added lots more cookies to fkey_table[], and code to do even more.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1994
diff
changeset
|
1334 "&8", "undo", /* terminfo */ |
|
8e4d2d1e7c66
Added lots more cookies to fkey_table[], and code to do even more.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1994
diff
changeset
|
1335 "%0", "redo", /* terminfo */ |
|
8e4d2d1e7c66
Added lots more cookies to fkey_table[], and code to do even more.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1994
diff
changeset
|
1336 "%7", "menu", /* terminfo --- actually the `options' key */ |
|
8e4d2d1e7c66
Added lots more cookies to fkey_table[], and code to do even more.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1994
diff
changeset
|
1337 "@0", "find", /* terminfo */ |
|
8e4d2d1e7c66
Added lots more cookies to fkey_table[], and code to do even more.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1994
diff
changeset
|
1338 "@2", "cancel", /* terminfo */ |
|
8e4d2d1e7c66
Added lots more cookies to fkey_table[], and code to do even more.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1994
diff
changeset
|
1339 "%1", "help", /* terminfo */ |
|
8e4d2d1e7c66
Added lots more cookies to fkey_table[], and code to do even more.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1994
diff
changeset
|
1340 /* |
|
8e4d2d1e7c66
Added lots more cookies to fkey_table[], and code to do even more.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1994
diff
changeset
|
1341 * "break" goes here, but can't be reliably intercepted with termcap |
|
8e4d2d1e7c66
Added lots more cookies to fkey_table[], and code to do even more.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1994
diff
changeset
|
1342 */ |
|
8e4d2d1e7c66
Added lots more cookies to fkey_table[], and code to do even more.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1994
diff
changeset
|
1343 "&4", "reset", /* terminfo --- actually `restart' */ |
|
8e4d2d1e7c66
Added lots more cookies to fkey_table[], and code to do even more.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1994
diff
changeset
|
1344 /* |
|
8e4d2d1e7c66
Added lots more cookies to fkey_table[], and code to do even more.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1994
diff
changeset
|
1345 * "system" and "user" --- no termcaps |
|
8e4d2d1e7c66
Added lots more cookies to fkey_table[], and code to do even more.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1994
diff
changeset
|
1346 */ |
|
8e4d2d1e7c66
Added lots more cookies to fkey_table[], and code to do even more.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1994
diff
changeset
|
1347 "kE", "clearline", /* terminfo */ |
|
8e4d2d1e7c66
Added lots more cookies to fkey_table[], and code to do even more.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1994
diff
changeset
|
1348 "kA", "insertline", /* terminfo */ |
|
8e4d2d1e7c66
Added lots more cookies to fkey_table[], and code to do even more.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1994
diff
changeset
|
1349 "kL", "deleteline", /* terminfo */ |
|
8e4d2d1e7c66
Added lots more cookies to fkey_table[], and code to do even more.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1994
diff
changeset
|
1350 "kI", "insertchar", /* terminfo */ |
|
8e4d2d1e7c66
Added lots more cookies to fkey_table[], and code to do even more.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1994
diff
changeset
|
1351 "kD", "deletechar", /* terminfo */ |
|
8e4d2d1e7c66
Added lots more cookies to fkey_table[], and code to do even more.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1994
diff
changeset
|
1352 "kB", "backtab", /* terminfo */ |
|
8e4d2d1e7c66
Added lots more cookies to fkey_table[], and code to do even more.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1994
diff
changeset
|
1353 /* |
|
8e4d2d1e7c66
Added lots more cookies to fkey_table[], and code to do even more.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1994
diff
changeset
|
1354 * "kp_backtab", "kp-space", "kp-tab" --- no termcaps |
|
8e4d2d1e7c66
Added lots more cookies to fkey_table[], and code to do even more.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1994
diff
changeset
|
1355 */ |
|
8e4d2d1e7c66
Added lots more cookies to fkey_table[], and code to do even more.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1994
diff
changeset
|
1356 "@8", "kp-enter", /* terminfo */ |
|
8e4d2d1e7c66
Added lots more cookies to fkey_table[], and code to do even more.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1994
diff
changeset
|
1357 /* |
|
8e4d2d1e7c66
Added lots more cookies to fkey_table[], and code to do even more.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1994
diff
changeset
|
1358 * "kp-f1", "kp-f2", "kp-f3" "kp-f4", |
|
8e4d2d1e7c66
Added lots more cookies to fkey_table[], and code to do even more.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1994
diff
changeset
|
1359 * "kp-multiply", "kp-add", "kp-separator", |
|
8e4d2d1e7c66
Added lots more cookies to fkey_table[], and code to do even more.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1994
diff
changeset
|
1360 * "kp-subtract", "kp-decimal", "kp-divide", "kp-0"; |
|
8e4d2d1e7c66
Added lots more cookies to fkey_table[], and code to do even more.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1994
diff
changeset
|
1361 * --- no termcaps for any of these. |
|
8e4d2d1e7c66
Added lots more cookies to fkey_table[], and code to do even more.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1994
diff
changeset
|
1362 */ |
|
8e4d2d1e7c66
Added lots more cookies to fkey_table[], and code to do even more.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1994
diff
changeset
|
1363 "K4", "kp-1", /* terminfo */ |
|
8e4d2d1e7c66
Added lots more cookies to fkey_table[], and code to do even more.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1994
diff
changeset
|
1364 /* |
|
8e4d2d1e7c66
Added lots more cookies to fkey_table[], and code to do even more.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1994
diff
changeset
|
1365 * "kp-2" --- no termcap |
|
8e4d2d1e7c66
Added lots more cookies to fkey_table[], and code to do even more.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1994
diff
changeset
|
1366 */ |
|
8e4d2d1e7c66
Added lots more cookies to fkey_table[], and code to do even more.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1994
diff
changeset
|
1367 "K5", "kp-3", /* terminfo */ |
|
8e4d2d1e7c66
Added lots more cookies to fkey_table[], and code to do even more.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1994
diff
changeset
|
1368 /* |
|
8e4d2d1e7c66
Added lots more cookies to fkey_table[], and code to do even more.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1994
diff
changeset
|
1369 * "kp-4" --- no termcap |
|
8e4d2d1e7c66
Added lots more cookies to fkey_table[], and code to do even more.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1994
diff
changeset
|
1370 */ |
|
8e4d2d1e7c66
Added lots more cookies to fkey_table[], and code to do even more.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1994
diff
changeset
|
1371 "K2", "kp-5", /* terminfo */ |
|
8e4d2d1e7c66
Added lots more cookies to fkey_table[], and code to do even more.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1994
diff
changeset
|
1372 /* |
|
8e4d2d1e7c66
Added lots more cookies to fkey_table[], and code to do even more.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1994
diff
changeset
|
1373 * "kp-6" --- no termcap |
|
8e4d2d1e7c66
Added lots more cookies to fkey_table[], and code to do even more.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1994
diff
changeset
|
1374 */ |
|
8e4d2d1e7c66
Added lots more cookies to fkey_table[], and code to do even more.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1994
diff
changeset
|
1375 "K1", "kp-7", /* terminfo */ |
|
8e4d2d1e7c66
Added lots more cookies to fkey_table[], and code to do even more.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1994
diff
changeset
|
1376 /* |
|
8e4d2d1e7c66
Added lots more cookies to fkey_table[], and code to do even more.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1994
diff
changeset
|
1377 * "kp-8" --- no termcap |
|
8e4d2d1e7c66
Added lots more cookies to fkey_table[], and code to do even more.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1994
diff
changeset
|
1378 */ |
|
8e4d2d1e7c66
Added lots more cookies to fkey_table[], and code to do even more.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1994
diff
changeset
|
1379 "K3", "kp-9", /* terminfo */ |
|
8e4d2d1e7c66
Added lots more cookies to fkey_table[], and code to do even more.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1994
diff
changeset
|
1380 /* |
|
8e4d2d1e7c66
Added lots more cookies to fkey_table[], and code to do even more.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1994
diff
changeset
|
1381 * "kp-equal" --- no termcap |
|
8e4d2d1e7c66
Added lots more cookies to fkey_table[], and code to do even more.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1994
diff
changeset
|
1382 */ |
|
8e4d2d1e7c66
Added lots more cookies to fkey_table[], and code to do even more.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1994
diff
changeset
|
1383 "k1", "f1", |
|
8e4d2d1e7c66
Added lots more cookies to fkey_table[], and code to do even more.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1994
diff
changeset
|
1384 "k2", "f2", |
|
8e4d2d1e7c66
Added lots more cookies to fkey_table[], and code to do even more.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1994
diff
changeset
|
1385 "k3", "f3", |
|
8e4d2d1e7c66
Added lots more cookies to fkey_table[], and code to do even more.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1994
diff
changeset
|
1386 "k4", "f4", |
|
8e4d2d1e7c66
Added lots more cookies to fkey_table[], and code to do even more.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1994
diff
changeset
|
1387 "k5", "f5", |
|
8e4d2d1e7c66
Added lots more cookies to fkey_table[], and code to do even more.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1994
diff
changeset
|
1388 "k6", "f6", |
|
8e4d2d1e7c66
Added lots more cookies to fkey_table[], and code to do even more.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1994
diff
changeset
|
1389 "k7", "f7", |
|
8e4d2d1e7c66
Added lots more cookies to fkey_table[], and code to do even more.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1994
diff
changeset
|
1390 "k8", "f8", |
|
8e4d2d1e7c66
Added lots more cookies to fkey_table[], and code to do even more.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1994
diff
changeset
|
1391 "k9", "f9", |
|
1015
58c373be762c
* term.c (term_get_fkeys): Some systems define `static' to be the
Jim Blandy <jimb@redhat.com>
parents:
969
diff
changeset
|
1392 }; |
|
58c373be762c
* term.c (term_get_fkeys): Some systems define `static' to be the
Jim Blandy <jimb@redhat.com>
parents:
969
diff
changeset
|
1393 |
|
6248
0e4319197d29
(term_get_fkeys_data): Variable removed.
Roland McGrath <roland@gnu.org>
parents:
5933
diff
changeset
|
1394 static char **term_get_fkeys_arg; |
|
0e4319197d29
(term_get_fkeys_data): Variable removed.
Roland McGrath <roland@gnu.org>
parents:
5933
diff
changeset
|
1395 static Lisp_Object term_get_fkeys_1 (); |
|
4543
929e4c850e76
(term_get_fkeys_define_1, term_get_fkeys_define): New functions.
Richard M. Stallman <rms@gnu.org>
parents:
4499
diff
changeset
|
1396 |
|
2137
8e4d2d1e7c66
Added lots more cookies to fkey_table[], and code to do even more.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1994
diff
changeset
|
1397 /* Find the escape codes sent by the function keys for Vfunction_key_map. |
|
8e4d2d1e7c66
Added lots more cookies to fkey_table[], and code to do even more.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1994
diff
changeset
|
1398 This function scans the termcap function key sequence entries, and |
|
8e4d2d1e7c66
Added lots more cookies to fkey_table[], and code to do even more.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1994
diff
changeset
|
1399 adds entries to Vfunction_key_map for each function key it finds. */ |
|
8e4d2d1e7c66
Added lots more cookies to fkey_table[], and code to do even more.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1994
diff
changeset
|
1400 |
| 533 | 1401 void |
| 1402 term_get_fkeys (address) | |
| 1403 char **address; | |
| 1404 { | |
|
6248
0e4319197d29
(term_get_fkeys_data): Variable removed.
Roland McGrath <roland@gnu.org>
parents:
5933
diff
changeset
|
1405 /* We run the body of the function (term_get_fkeys_1) and ignore all Lisp |
|
0e4319197d29
(term_get_fkeys_data): Variable removed.
Roland McGrath <roland@gnu.org>
parents:
5933
diff
changeset
|
1406 errors during the call. The only errors should be from Fdefine_key |
|
0e4319197d29
(term_get_fkeys_data): Variable removed.
Roland McGrath <roland@gnu.org>
parents:
5933
diff
changeset
|
1407 when given a key sequence containing an invalid prefix key. If the |
|
0e4319197d29
(term_get_fkeys_data): Variable removed.
Roland McGrath <roland@gnu.org>
parents:
5933
diff
changeset
|
1408 termcap defines function keys which use a prefix that is already bound |
|
0e4319197d29
(term_get_fkeys_data): Variable removed.
Roland McGrath <roland@gnu.org>
parents:
5933
diff
changeset
|
1409 to a command by the default bindings, we should silently ignore that |
|
0e4319197d29
(term_get_fkeys_data): Variable removed.
Roland McGrath <roland@gnu.org>
parents:
5933
diff
changeset
|
1410 function key specification, rather than giving the user an error and |
|
0e4319197d29
(term_get_fkeys_data): Variable removed.
Roland McGrath <roland@gnu.org>
parents:
5933
diff
changeset
|
1411 refusing to run at all on such a terminal. */ |
|
0e4319197d29
(term_get_fkeys_data): Variable removed.
Roland McGrath <roland@gnu.org>
parents:
5933
diff
changeset
|
1412 |
|
0e4319197d29
(term_get_fkeys_data): Variable removed.
Roland McGrath <roland@gnu.org>
parents:
5933
diff
changeset
|
1413 extern Lisp_Object Fidentity (); |
|
0e4319197d29
(term_get_fkeys_data): Variable removed.
Roland McGrath <roland@gnu.org>
parents:
5933
diff
changeset
|
1414 term_get_fkeys_arg = address; |
|
0e4319197d29
(term_get_fkeys_data): Variable removed.
Roland McGrath <roland@gnu.org>
parents:
5933
diff
changeset
|
1415 internal_condition_case (term_get_fkeys_1, Qerror, Fidentity); |
|
0e4319197d29
(term_get_fkeys_data): Variable removed.
Roland McGrath <roland@gnu.org>
parents:
5933
diff
changeset
|
1416 } |
|
0e4319197d29
(term_get_fkeys_data): Variable removed.
Roland McGrath <roland@gnu.org>
parents:
5933
diff
changeset
|
1417 |
|
0e4319197d29
(term_get_fkeys_data): Variable removed.
Roland McGrath <roland@gnu.org>
parents:
5933
diff
changeset
|
1418 static Lisp_Object |
|
0e4319197d29
(term_get_fkeys_data): Variable removed.
Roland McGrath <roland@gnu.org>
parents:
5933
diff
changeset
|
1419 term_get_fkeys_1 () |
|
0e4319197d29
(term_get_fkeys_data): Variable removed.
Roland McGrath <roland@gnu.org>
parents:
5933
diff
changeset
|
1420 { |
| 533 | 1421 int i; |
| 1422 | |
|
6250
a08cca81d0bd
(term_get_fkeys_1): Use term_get_fkeys_arg, not term_get_fkeys_address.
Roland McGrath <roland@gnu.org>
parents:
6249
diff
changeset
|
1423 char **address = term_get_fkeys_arg; |
|
6249
365e7cbd7292
(term_get_fkeys_1): New local var ADDRESS, init to term_get_fkeys_address.
Roland McGrath <roland@gnu.org>
parents:
6248
diff
changeset
|
1424 |
|
3359
ef29e2a4fc46
(term_get_fkeys): If not initialized, init Vfunction_key_map.
Richard M. Stallman <rms@gnu.org>
parents:
2961
diff
changeset
|
1425 /* This can happen if CANNOT_DUMP or with strange options. */ |
|
ef29e2a4fc46
(term_get_fkeys): If not initialized, init Vfunction_key_map.
Richard M. Stallman <rms@gnu.org>
parents:
2961
diff
changeset
|
1426 if (!initialized) |
|
ef29e2a4fc46
(term_get_fkeys): If not initialized, init Vfunction_key_map.
Richard M. Stallman <rms@gnu.org>
parents:
2961
diff
changeset
|
1427 Vfunction_key_map = Fmake_sparse_keymap (Qnil); |
|
ef29e2a4fc46
(term_get_fkeys): If not initialized, init Vfunction_key_map.
Richard M. Stallman <rms@gnu.org>
parents:
2961
diff
changeset
|
1428 |
| 533 | 1429 for (i = 0; i < (sizeof (keys)/sizeof (keys[0])); i++) |
| 1430 { | |
| 1431 char *sequence = tgetstr (keys[i].cap, address); | |
| 1432 if (sequence) | |
|
6248
0e4319197d29
(term_get_fkeys_data): Variable removed.
Roland McGrath <roland@gnu.org>
parents:
5933
diff
changeset
|
1433 Fdefine_key (Vfunction_key_map, build_string (sequence), |
|
0e4319197d29
(term_get_fkeys_data): Variable removed.
Roland McGrath <roland@gnu.org>
parents:
5933
diff
changeset
|
1434 Fmake_vector (make_number (1), |
|
0e4319197d29
(term_get_fkeys_data): Variable removed.
Roland McGrath <roland@gnu.org>
parents:
5933
diff
changeset
|
1435 intern (keys[i].name))); |
| 533 | 1436 } |
|
1015
58c373be762c
* term.c (term_get_fkeys): Some systems define `static' to be the
Jim Blandy <jimb@redhat.com>
parents:
969
diff
changeset
|
1437 |
|
58c373be762c
* term.c (term_get_fkeys): Some systems define `static' to be the
Jim Blandy <jimb@redhat.com>
parents:
969
diff
changeset
|
1438 /* The uses of the "k0" capability are inconsistent; sometimes it |
|
58c373be762c
* term.c (term_get_fkeys): Some systems define `static' to be the
Jim Blandy <jimb@redhat.com>
parents:
969
diff
changeset
|
1439 describes F10, whereas othertimes it describes F0 and "k;" describes F10. |
|
3591
507f64624555
Apply typo patches from Paul Eggert.
Jim Blandy <jimb@redhat.com>
parents:
3489
diff
changeset
|
1440 We will attempt to politely accommodate both systems by testing for |
|
1015
58c373be762c
* term.c (term_get_fkeys): Some systems define `static' to be the
Jim Blandy <jimb@redhat.com>
parents:
969
diff
changeset
|
1441 "k;", and if it is present, assuming that "k0" denotes F0, otherwise F10. |
|
58c373be762c
* term.c (term_get_fkeys): Some systems define `static' to be the
Jim Blandy <jimb@redhat.com>
parents:
969
diff
changeset
|
1442 */ |
|
58c373be762c
* term.c (term_get_fkeys): Some systems define `static' to be the
Jim Blandy <jimb@redhat.com>
parents:
969
diff
changeset
|
1443 { |
|
58c373be762c
* term.c (term_get_fkeys): Some systems define `static' to be the
Jim Blandy <jimb@redhat.com>
parents:
969
diff
changeset
|
1444 char *k_semi = tgetstr ("k;", address); |
|
58c373be762c
* term.c (term_get_fkeys): Some systems define `static' to be the
Jim Blandy <jimb@redhat.com>
parents:
969
diff
changeset
|
1445 char *k0 = tgetstr ("k0", address); |
|
58c373be762c
* term.c (term_get_fkeys): Some systems define `static' to be the
Jim Blandy <jimb@redhat.com>
parents:
969
diff
changeset
|
1446 char *k0_name = "f10"; |
|
58c373be762c
* term.c (term_get_fkeys): Some systems define `static' to be the
Jim Blandy <jimb@redhat.com>
parents:
969
diff
changeset
|
1447 |
|
58c373be762c
* term.c (term_get_fkeys): Some systems define `static' to be the
Jim Blandy <jimb@redhat.com>
parents:
969
diff
changeset
|
1448 if (k_semi) |
|
58c373be762c
* term.c (term_get_fkeys): Some systems define `static' to be the
Jim Blandy <jimb@redhat.com>
parents:
969
diff
changeset
|
1449 { |
|
6248
0e4319197d29
(term_get_fkeys_data): Variable removed.
Roland McGrath <roland@gnu.org>
parents:
5933
diff
changeset
|
1450 Fdefine_key (Vfunction_key_map, build_string (k_semi), |
|
0e4319197d29
(term_get_fkeys_data): Variable removed.
Roland McGrath <roland@gnu.org>
parents:
5933
diff
changeset
|
1451 Fmake_vector (make_number (1), intern ("f10"))); |
|
1015
58c373be762c
* term.c (term_get_fkeys): Some systems define `static' to be the
Jim Blandy <jimb@redhat.com>
parents:
969
diff
changeset
|
1452 k0_name = "f0"; |
|
58c373be762c
* term.c (term_get_fkeys): Some systems define `static' to be the
Jim Blandy <jimb@redhat.com>
parents:
969
diff
changeset
|
1453 } |
|
58c373be762c
* term.c (term_get_fkeys): Some systems define `static' to be the
Jim Blandy <jimb@redhat.com>
parents:
969
diff
changeset
|
1454 |
|
58c373be762c
* term.c (term_get_fkeys): Some systems define `static' to be the
Jim Blandy <jimb@redhat.com>
parents:
969
diff
changeset
|
1455 if (k0) |
|
6248
0e4319197d29
(term_get_fkeys_data): Variable removed.
Roland McGrath <roland@gnu.org>
parents:
5933
diff
changeset
|
1456 Fdefine_key (Vfunction_key_map, build_string (k0), |
|
0e4319197d29
(term_get_fkeys_data): Variable removed.
Roland McGrath <roland@gnu.org>
parents:
5933
diff
changeset
|
1457 Fmake_vector (make_number (1), intern (k0_name))); |
|
1015
58c373be762c
* term.c (term_get_fkeys): Some systems define `static' to be the
Jim Blandy <jimb@redhat.com>
parents:
969
diff
changeset
|
1458 } |
|
2137
8e4d2d1e7c66
Added lots more cookies to fkey_table[], and code to do even more.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1994
diff
changeset
|
1459 |
|
8e4d2d1e7c66
Added lots more cookies to fkey_table[], and code to do even more.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1994
diff
changeset
|
1460 /* Set up cookies for numbered function keys above f10. */ |
|
8e4d2d1e7c66
Added lots more cookies to fkey_table[], and code to do even more.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1994
diff
changeset
|
1461 { |
|
8e4d2d1e7c66
Added lots more cookies to fkey_table[], and code to do even more.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1994
diff
changeset
|
1462 char fcap[3], fkey[4]; |
|
8e4d2d1e7c66
Added lots more cookies to fkey_table[], and code to do even more.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1994
diff
changeset
|
1463 |
|
3489
5c2b4797aab2
(term_get_fkeys): Use correct names for F10 and up.
Richard M. Stallman <rms@gnu.org>
parents:
3359
diff
changeset
|
1464 fcap[0] = 'F'; fcap[2] = '\0'; |
|
2137
8e4d2d1e7c66
Added lots more cookies to fkey_table[], and code to do even more.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1994
diff
changeset
|
1465 for (i = 11; i < 64; i++) |
|
8e4d2d1e7c66
Added lots more cookies to fkey_table[], and code to do even more.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1994
diff
changeset
|
1466 { |
|
8e4d2d1e7c66
Added lots more cookies to fkey_table[], and code to do even more.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1994
diff
changeset
|
1467 if (i <= 19) |
|
8e4d2d1e7c66
Added lots more cookies to fkey_table[], and code to do even more.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1994
diff
changeset
|
1468 fcap[1] = '1' + i - 11; |
|
8e4d2d1e7c66
Added lots more cookies to fkey_table[], and code to do even more.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1994
diff
changeset
|
1469 else if (i <= 45) |
|
10481
24756aef26e3
(term_get_fkeys_1): Bug fix for function key above f19.
Richard M. Stallman <rms@gnu.org>
parents:
10439
diff
changeset
|
1470 fcap[1] = 'A' + i - 20; |
|
2137
8e4d2d1e7c66
Added lots more cookies to fkey_table[], and code to do even more.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1994
diff
changeset
|
1471 else |
|
10481
24756aef26e3
(term_get_fkeys_1): Bug fix for function key above f19.
Richard M. Stallman <rms@gnu.org>
parents:
10439
diff
changeset
|
1472 fcap[1] = 'a' + i - 46; |
|
2137
8e4d2d1e7c66
Added lots more cookies to fkey_table[], and code to do even more.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1994
diff
changeset
|
1473 |
|
3489
5c2b4797aab2
(term_get_fkeys): Use correct names for F10 and up.
Richard M. Stallman <rms@gnu.org>
parents:
3359
diff
changeset
|
1474 { |
|
5c2b4797aab2
(term_get_fkeys): Use correct names for F10 and up.
Richard M. Stallman <rms@gnu.org>
parents:
3359
diff
changeset
|
1475 char *sequence = tgetstr (fcap, address); |
|
5c2b4797aab2
(term_get_fkeys): Use correct names for F10 and up.
Richard M. Stallman <rms@gnu.org>
parents:
3359
diff
changeset
|
1476 if (sequence) |
|
5c2b4797aab2
(term_get_fkeys): Use correct names for F10 and up.
Richard M. Stallman <rms@gnu.org>
parents:
3359
diff
changeset
|
1477 { |
|
4543
929e4c850e76
(term_get_fkeys_define_1, term_get_fkeys_define): New functions.
Richard M. Stallman <rms@gnu.org>
parents:
4499
diff
changeset
|
1478 sprintf (fkey, "f%d", i); |
|
6248
0e4319197d29
(term_get_fkeys_data): Variable removed.
Roland McGrath <roland@gnu.org>
parents:
5933
diff
changeset
|
1479 Fdefine_key (Vfunction_key_map, build_string (sequence), |
|
0e4319197d29
(term_get_fkeys_data): Variable removed.
Roland McGrath <roland@gnu.org>
parents:
5933
diff
changeset
|
1480 Fmake_vector (make_number (1), |
|
0e4319197d29
(term_get_fkeys_data): Variable removed.
Roland McGrath <roland@gnu.org>
parents:
5933
diff
changeset
|
1481 intern (fkey))); |
|
3489
5c2b4797aab2
(term_get_fkeys): Use correct names for F10 and up.
Richard M. Stallman <rms@gnu.org>
parents:
3359
diff
changeset
|
1482 } |
|
5c2b4797aab2
(term_get_fkeys): Use correct names for F10 and up.
Richard M. Stallman <rms@gnu.org>
parents:
3359
diff
changeset
|
1483 } |
|
2137
8e4d2d1e7c66
Added lots more cookies to fkey_table[], and code to do even more.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1994
diff
changeset
|
1484 } |
|
8e4d2d1e7c66
Added lots more cookies to fkey_table[], and code to do even more.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1994
diff
changeset
|
1485 } |
|
8e4d2d1e7c66
Added lots more cookies to fkey_table[], and code to do even more.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1994
diff
changeset
|
1486 |
|
8e4d2d1e7c66
Added lots more cookies to fkey_table[], and code to do even more.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1994
diff
changeset
|
1487 /* |
|
8e4d2d1e7c66
Added lots more cookies to fkey_table[], and code to do even more.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1994
diff
changeset
|
1488 * Various mappings to try and get a better fit. |
|
8e4d2d1e7c66
Added lots more cookies to fkey_table[], and code to do even more.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1994
diff
changeset
|
1489 */ |
|
8e4d2d1e7c66
Added lots more cookies to fkey_table[], and code to do even more.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1994
diff
changeset
|
1490 { |
|
3489
5c2b4797aab2
(term_get_fkeys): Use correct names for F10 and up.
Richard M. Stallman <rms@gnu.org>
parents:
3359
diff
changeset
|
1491 #define CONDITIONAL_REASSIGN(cap1, cap2, sym) \ |
|
5c2b4797aab2
(term_get_fkeys): Use correct names for F10 and up.
Richard M. Stallman <rms@gnu.org>
parents:
3359
diff
changeset
|
1492 if (!tgetstr (cap1, address)) \ |
|
5c2b4797aab2
(term_get_fkeys): Use correct names for F10 and up.
Richard M. Stallman <rms@gnu.org>
parents:
3359
diff
changeset
|
1493 { \ |
|
5c2b4797aab2
(term_get_fkeys): Use correct names for F10 and up.
Richard M. Stallman <rms@gnu.org>
parents:
3359
diff
changeset
|
1494 char *sequence = tgetstr (cap2, address); \ |
|
5c2b4797aab2
(term_get_fkeys): Use correct names for F10 and up.
Richard M. Stallman <rms@gnu.org>
parents:
3359
diff
changeset
|
1495 if (sequence) \ |
|
6248
0e4319197d29
(term_get_fkeys_data): Variable removed.
Roland McGrath <roland@gnu.org>
parents:
5933
diff
changeset
|
1496 Fdefine_key (Vfunction_key_map, build_string (sequence), \ |
|
0e4319197d29
(term_get_fkeys_data): Variable removed.
Roland McGrath <roland@gnu.org>
parents:
5933
diff
changeset
|
1497 Fmake_vector (make_number (1), \ |
|
0e4319197d29
(term_get_fkeys_data): Variable removed.
Roland McGrath <roland@gnu.org>
parents:
5933
diff
changeset
|
1498 intern (sym))); \ |
|
3489
5c2b4797aab2
(term_get_fkeys): Use correct names for F10 and up.
Richard M. Stallman <rms@gnu.org>
parents:
3359
diff
changeset
|
1499 } |
|
2137
8e4d2d1e7c66
Added lots more cookies to fkey_table[], and code to do even more.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1994
diff
changeset
|
1500 |
|
8e4d2d1e7c66
Added lots more cookies to fkey_table[], and code to do even more.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1994
diff
changeset
|
1501 /* if there's no key_next keycap, map key_npage to `next' keysym */ |
|
2243
23228edebc59
Fix spacing conventions.
Richard M. Stallman <rms@gnu.org>
parents:
2239
diff
changeset
|
1502 CONDITIONAL_REASSIGN ("%5", "kN", "next"); |
|
2137
8e4d2d1e7c66
Added lots more cookies to fkey_table[], and code to do even more.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1994
diff
changeset
|
1503 /* if there's no key_prev keycap, map key_ppage to `previous' keysym */ |
|
3706
5a563b062c0d
(term_get_fkeys): Use `prior', not `previous', for %8/kP.
Richard M. Stallman <rms@gnu.org>
parents:
3591
diff
changeset
|
1504 CONDITIONAL_REASSIGN ("%8", "kP", "prior"); |
|
2137
8e4d2d1e7c66
Added lots more cookies to fkey_table[], and code to do even more.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1994
diff
changeset
|
1505 /* if there's no key_dc keycap, map key_ic to `insert' keysym */ |
|
2243
23228edebc59
Fix spacing conventions.
Richard M. Stallman <rms@gnu.org>
parents:
2239
diff
changeset
|
1506 CONDITIONAL_REASSIGN ("kD", "kI", "insert"); |
|
9524
f42e5fd15f6f
(term_get_fkeys_1): Workaround for IBM's dialect of terminfo.
Karl Heuer <kwzh@gnu.org>
parents:
8898
diff
changeset
|
1507 |
|
f42e5fd15f6f
(term_get_fkeys_1): Workaround for IBM's dialect of terminfo.
Karl Heuer <kwzh@gnu.org>
parents:
8898
diff
changeset
|
1508 /* IBM has their own non-standard dialect of terminfo. |
|
f42e5fd15f6f
(term_get_fkeys_1): Workaround for IBM's dialect of terminfo.
Karl Heuer <kwzh@gnu.org>
parents:
8898
diff
changeset
|
1509 If the standard name isn't found, try the IBM name. */ |
|
f42e5fd15f6f
(term_get_fkeys_1): Workaround for IBM's dialect of terminfo.
Karl Heuer <kwzh@gnu.org>
parents:
8898
diff
changeset
|
1510 CONDITIONAL_REASSIGN ("kB", "KO", "backtab"); |
|
f42e5fd15f6f
(term_get_fkeys_1): Workaround for IBM's dialect of terminfo.
Karl Heuer <kwzh@gnu.org>
parents:
8898
diff
changeset
|
1511 CONDITIONAL_REASSIGN ("@4", "kJ", "execute"); /* actually "action" */ |
|
f42e5fd15f6f
(term_get_fkeys_1): Workaround for IBM's dialect of terminfo.
Karl Heuer <kwzh@gnu.org>
parents:
8898
diff
changeset
|
1512 CONDITIONAL_REASSIGN ("@4", "kc", "execute"); /* actually "command" */ |
|
f42e5fd15f6f
(term_get_fkeys_1): Workaround for IBM's dialect of terminfo.
Karl Heuer <kwzh@gnu.org>
parents:
8898
diff
changeset
|
1513 CONDITIONAL_REASSIGN ("%7", "ki", "menu"); |
|
f42e5fd15f6f
(term_get_fkeys_1): Workaround for IBM's dialect of terminfo.
Karl Heuer <kwzh@gnu.org>
parents:
8898
diff
changeset
|
1514 CONDITIONAL_REASSIGN ("@7", "kw", "end"); |
|
f42e5fd15f6f
(term_get_fkeys_1): Workaround for IBM's dialect of terminfo.
Karl Heuer <kwzh@gnu.org>
parents:
8898
diff
changeset
|
1515 CONDITIONAL_REASSIGN ("F1", "k<", "f11"); |
|
f42e5fd15f6f
(term_get_fkeys_1): Workaround for IBM's dialect of terminfo.
Karl Heuer <kwzh@gnu.org>
parents:
8898
diff
changeset
|
1516 CONDITIONAL_REASSIGN ("F2", "k>", "f12"); |
|
f42e5fd15f6f
(term_get_fkeys_1): Workaround for IBM's dialect of terminfo.
Karl Heuer <kwzh@gnu.org>
parents:
8898
diff
changeset
|
1517 CONDITIONAL_REASSIGN ("%1", "kq", "help"); |
|
f42e5fd15f6f
(term_get_fkeys_1): Workaround for IBM's dialect of terminfo.
Karl Heuer <kwzh@gnu.org>
parents:
8898
diff
changeset
|
1518 CONDITIONAL_REASSIGN ("*6", "kU", "select"); |
|
2224
49bda4cf498c
Supply second arg for tgetstr() calls.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2179
diff
changeset
|
1519 #undef CONDITIONAL_REASSIGN |
|
2137
8e4d2d1e7c66
Added lots more cookies to fkey_table[], and code to do even more.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1994
diff
changeset
|
1520 } |
| 533 | 1521 } |
| 1522 | |
| 1523 | |
| 253 | 1524 term_init (terminal_type) |
| 1525 char *terminal_type; | |
| 1526 { | |
| 1527 char *area; | |
| 1528 char **address = &area; | |
| 1529 char buffer[2044]; | |
| 1530 register char *p; | |
| 1531 int status; | |
| 1532 | |
|
9797
05d9072c5a38
(term_init) [WINDOWSNT]: Do some Windows-specific
Richard M. Stallman <rms@gnu.org>
parents:
9658
diff
changeset
|
1533 #ifdef WINDOWSNT |
|
16885
ddd632f61ce3
(term_init): Use new name initialize_w32_display.
Geoff Voelker <voelker@cs.washington.edu>
parents:
16260
diff
changeset
|
1534 initialize_w32_display (); |
|
9797
05d9072c5a38
(term_init) [WINDOWSNT]: Do some Windows-specific
Richard M. Stallman <rms@gnu.org>
parents:
9658
diff
changeset
|
1535 |
|
05d9072c5a38
(term_init) [WINDOWSNT]: Do some Windows-specific
Richard M. Stallman <rms@gnu.org>
parents:
9658
diff
changeset
|
1536 Wcm_clear (); |
|
05d9072c5a38
(term_init) [WINDOWSNT]: Do some Windows-specific
Richard M. Stallman <rms@gnu.org>
parents:
9658
diff
changeset
|
1537 |
|
05d9072c5a38
(term_init) [WINDOWSNT]: Do some Windows-specific
Richard M. Stallman <rms@gnu.org>
parents:
9658
diff
changeset
|
1538 area = (char *) malloc (2044); |
|
05d9072c5a38
(term_init) [WINDOWSNT]: Do some Windows-specific
Richard M. Stallman <rms@gnu.org>
parents:
9658
diff
changeset
|
1539 |
|
05d9072c5a38
(term_init) [WINDOWSNT]: Do some Windows-specific
Richard M. Stallman <rms@gnu.org>
parents:
9658
diff
changeset
|
1540 if (area == 0) |
|
05d9072c5a38
(term_init) [WINDOWSNT]: Do some Windows-specific
Richard M. Stallman <rms@gnu.org>
parents:
9658
diff
changeset
|
1541 abort (); |
|
05d9072c5a38
(term_init) [WINDOWSNT]: Do some Windows-specific
Richard M. Stallman <rms@gnu.org>
parents:
9658
diff
changeset
|
1542 |
|
05d9072c5a38
(term_init) [WINDOWSNT]: Do some Windows-specific
Richard M. Stallman <rms@gnu.org>
parents:
9658
diff
changeset
|
1543 FrameRows = FRAME_HEIGHT (selected_frame); |
|
05d9072c5a38
(term_init) [WINDOWSNT]: Do some Windows-specific
Richard M. Stallman <rms@gnu.org>
parents:
9658
diff
changeset
|
1544 FrameCols = FRAME_WIDTH (selected_frame); |
|
05d9072c5a38
(term_init) [WINDOWSNT]: Do some Windows-specific
Richard M. Stallman <rms@gnu.org>
parents:
9658
diff
changeset
|
1545 specified_window = FRAME_HEIGHT (selected_frame); |
|
05d9072c5a38
(term_init) [WINDOWSNT]: Do some Windows-specific
Richard M. Stallman <rms@gnu.org>
parents:
9658
diff
changeset
|
1546 |
|
05d9072c5a38
(term_init) [WINDOWSNT]: Do some Windows-specific
Richard M. Stallman <rms@gnu.org>
parents:
9658
diff
changeset
|
1547 delete_in_insert_mode = 1; |
|
05d9072c5a38
(term_init) [WINDOWSNT]: Do some Windows-specific
Richard M. Stallman <rms@gnu.org>
parents:
9658
diff
changeset
|
1548 |
|
05d9072c5a38
(term_init) [WINDOWSNT]: Do some Windows-specific
Richard M. Stallman <rms@gnu.org>
parents:
9658
diff
changeset
|
1549 UseTabs = 0; |
|
05d9072c5a38
(term_init) [WINDOWSNT]: Do some Windows-specific
Richard M. Stallman <rms@gnu.org>
parents:
9658
diff
changeset
|
1550 scroll_region_ok = 0; |
|
05d9072c5a38
(term_init) [WINDOWSNT]: Do some Windows-specific
Richard M. Stallman <rms@gnu.org>
parents:
9658
diff
changeset
|
1551 |
|
05d9072c5a38
(term_init) [WINDOWSNT]: Do some Windows-specific
Richard M. Stallman <rms@gnu.org>
parents:
9658
diff
changeset
|
1552 /* Seems to insert lines when it's not supposed to, messing |
|
05d9072c5a38
(term_init) [WINDOWSNT]: Do some Windows-specific
Richard M. Stallman <rms@gnu.org>
parents:
9658
diff
changeset
|
1553 up the display. In doing a trace, it didn't seem to be |
|
05d9072c5a38
(term_init) [WINDOWSNT]: Do some Windows-specific
Richard M. Stallman <rms@gnu.org>
parents:
9658
diff
changeset
|
1554 called much, so I don't think we're losing anything by |
|
05d9072c5a38
(term_init) [WINDOWSNT]: Do some Windows-specific
Richard M. Stallman <rms@gnu.org>
parents:
9658
diff
changeset
|
1555 turning it off. */ |
|
05d9072c5a38
(term_init) [WINDOWSNT]: Do some Windows-specific
Richard M. Stallman <rms@gnu.org>
parents:
9658
diff
changeset
|
1556 |
|
05d9072c5a38
(term_init) [WINDOWSNT]: Do some Windows-specific
Richard M. Stallman <rms@gnu.org>
parents:
9658
diff
changeset
|
1557 line_ins_del_ok = 0; |
|
05d9072c5a38
(term_init) [WINDOWSNT]: Do some Windows-specific
Richard M. Stallman <rms@gnu.org>
parents:
9658
diff
changeset
|
1558 char_ins_del_ok = 1; |
|
05d9072c5a38
(term_init) [WINDOWSNT]: Do some Windows-specific
Richard M. Stallman <rms@gnu.org>
parents:
9658
diff
changeset
|
1559 |
|
05d9072c5a38
(term_init) [WINDOWSNT]: Do some Windows-specific
Richard M. Stallman <rms@gnu.org>
parents:
9658
diff
changeset
|
1560 baud_rate = 19200; |
|
05d9072c5a38
(term_init) [WINDOWSNT]: Do some Windows-specific
Richard M. Stallman <rms@gnu.org>
parents:
9658
diff
changeset
|
1561 |
|
05d9072c5a38
(term_init) [WINDOWSNT]: Do some Windows-specific
Richard M. Stallman <rms@gnu.org>
parents:
9658
diff
changeset
|
1562 FRAME_CAN_HAVE_SCROLL_BARS (selected_frame) = 0; |
|
16260
4468f3277e80
(term_init): Use new vertical scroll bar enumerated type.
Richard M. Stallman <rms@gnu.org>
parents:
16094
diff
changeset
|
1563 FRAME_VERTICAL_SCROLL_BAR_TYPE (selected_frame) = vertical_scroll_bar_none; |
|
9797
05d9072c5a38
(term_init) [WINDOWSNT]: Do some Windows-specific
Richard M. Stallman <rms@gnu.org>
parents:
9658
diff
changeset
|
1564 |
|
05d9072c5a38
(term_init) [WINDOWSNT]: Do some Windows-specific
Richard M. Stallman <rms@gnu.org>
parents:
9658
diff
changeset
|
1565 return; |
|
05d9072c5a38
(term_init) [WINDOWSNT]: Do some Windows-specific
Richard M. Stallman <rms@gnu.org>
parents:
9658
diff
changeset
|
1566 #endif /* WINDOWSNT */ |
|
05d9072c5a38
(term_init) [WINDOWSNT]: Do some Windows-specific
Richard M. Stallman <rms@gnu.org>
parents:
9658
diff
changeset
|
1567 |
| 253 | 1568 Wcm_clear (); |
| 1569 | |
| 1570 status = tgetent (buffer, terminal_type); | |
| 1571 if (status < 0) | |
|
10824
894369e950f5
(term_init) [TERMINFO]: Make error message more accurate.
Karl Heuer <kwzh@gnu.org>
parents:
10771
diff
changeset
|
1572 { |
|
894369e950f5
(term_init) [TERMINFO]: Make error message more accurate.
Karl Heuer <kwzh@gnu.org>
parents:
10771
diff
changeset
|
1573 #ifdef TERMINFO |
|
16894
cd8d6bf6b320
(fatal): Print a newline at the end.
Richard M. Stallman <rms@gnu.org>
parents:
16885
diff
changeset
|
1574 fatal ("Cannot open terminfo database file"); |
|
10824
894369e950f5
(term_init) [TERMINFO]: Make error message more accurate.
Karl Heuer <kwzh@gnu.org>
parents:
10771
diff
changeset
|
1575 #else |
|
16894
cd8d6bf6b320
(fatal): Print a newline at the end.
Richard M. Stallman <rms@gnu.org>
parents:
16885
diff
changeset
|
1576 fatal ("Cannot open termcap database file"); |
|
10824
894369e950f5
(term_init) [TERMINFO]: Make error message more accurate.
Karl Heuer <kwzh@gnu.org>
parents:
10771
diff
changeset
|
1577 #endif |
|
894369e950f5
(term_init) [TERMINFO]: Make error message more accurate.
Karl Heuer <kwzh@gnu.org>
parents:
10771
diff
changeset
|
1578 } |
| 253 | 1579 if (status == 0) |
|
10824
894369e950f5
(term_init) [TERMINFO]: Make error message more accurate.
Karl Heuer <kwzh@gnu.org>
parents:
10771
diff
changeset
|
1580 { |
|
894369e950f5
(term_init) [TERMINFO]: Make error message more accurate.
Karl Heuer <kwzh@gnu.org>
parents:
10771
diff
changeset
|
1581 #ifdef TERMINFO |
|
894369e950f5
(term_init) [TERMINFO]: Make error message more accurate.
Karl Heuer <kwzh@gnu.org>
parents:
10771
diff
changeset
|
1582 fatal ("Terminal type %s is not defined.\n\ |
|
894369e950f5
(term_init) [TERMINFO]: Make error message more accurate.
Karl Heuer <kwzh@gnu.org>
parents:
10771
diff
changeset
|
1583 If that is not the actual type of terminal you have,\n\ |
|
894369e950f5
(term_init) [TERMINFO]: Make error message more accurate.
Karl Heuer <kwzh@gnu.org>
parents:
10771
diff
changeset
|
1584 use the Bourne shell command `TERM=... export TERM' (C-shell:\n\ |
|
894369e950f5
(term_init) [TERMINFO]: Make error message more accurate.
Karl Heuer <kwzh@gnu.org>
parents:
10771
diff
changeset
|
1585 `setenv TERM ...') to specify the correct type. It may be necessary\n\ |
|
16894
cd8d6bf6b320
(fatal): Print a newline at the end.
Richard M. Stallman <rms@gnu.org>
parents:
16885
diff
changeset
|
1586 to do `unset TERMINFO' (C-shell: `unsetenv TERMINFO') as well.", |
|
10824
894369e950f5
(term_init) [TERMINFO]: Make error message more accurate.
Karl Heuer <kwzh@gnu.org>
parents:
10771
diff
changeset
|
1587 terminal_type); |
|
894369e950f5
(term_init) [TERMINFO]: Make error message more accurate.
Karl Heuer <kwzh@gnu.org>
parents:
10771
diff
changeset
|
1588 #else |
|
894369e950f5
(term_init) [TERMINFO]: Make error message more accurate.
Karl Heuer <kwzh@gnu.org>
parents:
10771
diff
changeset
|
1589 fatal ("Terminal type %s is not defined.\n\ |
|
4499
c7bfd863aefd
(term_init): Improve error messages (give sh commands).
Richard M. Stallman <rms@gnu.org>
parents:
3706
diff
changeset
|
1590 If that is not the actual type of terminal you have,\n\ |
|
c7bfd863aefd
(term_init): Improve error messages (give sh commands).
Richard M. Stallman <rms@gnu.org>
parents:
3706
diff
changeset
|
1591 use the Bourne shell command `TERM=... export TERM' (C-shell:\n\ |
|
c7bfd863aefd
(term_init): Improve error messages (give sh commands).
Richard M. Stallman <rms@gnu.org>
parents:
3706
diff
changeset
|
1592 `setenv TERM ...') to specify the correct type. It may be necessary\n\ |
|
16894
cd8d6bf6b320
(fatal): Print a newline at the end.
Richard M. Stallman <rms@gnu.org>
parents:
16885
diff
changeset
|
1593 to do `unset TERMCAP' (C-shell: `unsetenv TERMCAP') as well.", |
|
10824
894369e950f5
(term_init) [TERMINFO]: Make error message more accurate.
Karl Heuer <kwzh@gnu.org>
parents:
10771
diff
changeset
|
1594 terminal_type); |
|
894369e950f5
(term_init) [TERMINFO]: Make error message more accurate.
Karl Heuer <kwzh@gnu.org>
parents:
10771
diff
changeset
|
1595 #endif |
|
894369e950f5
(term_init) [TERMINFO]: Make error message more accurate.
Karl Heuer <kwzh@gnu.org>
parents:
10771
diff
changeset
|
1596 } |
| 253 | 1597 #ifdef TERMINFO |
| 1598 area = (char *) malloc (2044); | |
| 1599 #else | |
| 1600 area = (char *) malloc (strlen (buffer)); | |
| 1601 #endif /* not TERMINFO */ | |
| 1602 if (area == 0) | |
| 1603 abort (); | |
| 1604 | |
| 1605 TS_ins_line = tgetstr ("al", address); | |
| 1606 TS_ins_multi_lines = tgetstr ("AL", address); | |
| 1607 TS_bell = tgetstr ("bl", address); | |
| 1608 BackTab = tgetstr ("bt", address); | |
| 1609 TS_clr_to_bottom = tgetstr ("cd", address); | |
| 1610 TS_clr_line = tgetstr ("ce", address); | |
| 765 | 1611 TS_clr_frame = tgetstr ("cl", address); |
| 253 | 1612 ColPosition = tgetstr ("ch", address); |
| 1613 AbsPosition = tgetstr ("cm", address); | |
| 1614 CR = tgetstr ("cr", address); | |
| 1615 TS_set_scroll_region = tgetstr ("cs", address); | |
| 1616 TS_set_scroll_region_1 = tgetstr ("cS", address); | |
| 1617 RowPosition = tgetstr ("cv", address); | |
| 1618 TS_del_char = tgetstr ("dc", address); | |
| 1619 TS_del_multi_chars = tgetstr ("DC", address); | |
| 1620 TS_del_line = tgetstr ("dl", address); | |
| 1621 TS_del_multi_lines = tgetstr ("DL", address); | |
| 1622 TS_delete_mode = tgetstr ("dm", address); | |
| 1623 TS_end_delete_mode = tgetstr ("ed", address); | |
| 1624 TS_end_insert_mode = tgetstr ("ei", address); | |
| 1625 Home = tgetstr ("ho", address); | |
| 1626 TS_ins_char = tgetstr ("ic", address); | |
| 1627 TS_ins_multi_chars = tgetstr ("IC", address); | |
| 1628 TS_insert_mode = tgetstr ("im", address); | |
| 1629 TS_pad_inserted_char = tgetstr ("ip", address); | |
| 1630 TS_end_keypad_mode = tgetstr ("ke", address); | |
| 1631 TS_keypad_mode = tgetstr ("ks", address); | |
| 1632 LastLine = tgetstr ("ll", address); | |
| 1633 Right = tgetstr ("nd", address); | |
| 1634 Down = tgetstr ("do", address); | |
| 1635 if (!Down) | |
| 1636 Down = tgetstr ("nl", address); /* Obsolete name for "do" */ | |
| 1637 #ifdef VMS | |
| 1638 /* VMS puts a carriage return before each linefeed, | |
| 1639 so it is not safe to use linefeeds. */ | |
| 1640 if (Down && Down[0] == '\n' && Down[1] == '\0') | |
| 1641 Down = 0; | |
| 1642 #endif /* VMS */ | |
| 1643 if (tgetflag ("bs")) | |
| 1644 Left = "\b"; /* can't possibly be longer! */ | |
| 1645 else /* (Actually, "bs" is obsolete...) */ | |
| 1646 Left = tgetstr ("le", address); | |
| 1647 if (!Left) | |
| 1648 Left = tgetstr ("bc", address); /* Obsolete name for "le" */ | |
| 1649 TS_pad_char = tgetstr ("pc", address); | |
| 1650 TS_repeat = tgetstr ("rp", address); | |
| 1651 TS_end_standout_mode = tgetstr ("se", address); | |
| 1652 TS_fwd_scroll = tgetstr ("sf", address); | |
| 1653 TS_standout_mode = tgetstr ("so", address); | |
| 1654 TS_rev_scroll = tgetstr ("sr", address); | |
| 1655 Wcm.cm_tab = tgetstr ("ta", address); | |
| 1656 TS_end_termcap_modes = tgetstr ("te", address); | |
| 1657 TS_termcap_modes = tgetstr ("ti", address); | |
|
17046
84b0e9794a87
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16894
diff
changeset
|
1658 TS_bold_mode = tgetstr ("md", address); |
|
84b0e9794a87
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16894
diff
changeset
|
1659 TS_end_bold_mode = tgetstr ("me", address); |
|
84b0e9794a87
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16894
diff
changeset
|
1660 TS_underscore_mode = tgetstr ("us", address); |
|
84b0e9794a87
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16894
diff
changeset
|
1661 TS_end_underscore_mode = tgetstr ("ue", address); |
| 253 | 1662 Up = tgetstr ("up", address); |
| 1663 TS_visible_bell = tgetstr ("vb", address); | |
| 1664 TS_end_visual_mode = tgetstr ("ve", address); | |
| 1665 TS_visual_mode = tgetstr ("vs", address); | |
| 1666 TS_set_window = tgetstr ("wi", address); | |
| 1667 MultiUp = tgetstr ("UP", address); | |
| 1668 MultiDown = tgetstr ("DO", address); | |
| 1669 MultiLeft = tgetstr ("LE", address); | |
| 1670 MultiRight = tgetstr ("RI", address); | |
| 1671 | |
|
11530
a265aaa699e0
(term_init): MagicWrap implies AutoWrap.
Karl Heuer <kwzh@gnu.org>
parents:
11235
diff
changeset
|
1672 MagicWrap = tgetflag ("xn"); |
|
a265aaa699e0
(term_init): MagicWrap implies AutoWrap.
Karl Heuer <kwzh@gnu.org>
parents:
11235
diff
changeset
|
1673 /* Since we make MagicWrap terminals look like AutoWrap, we need to have |
|
a265aaa699e0
(term_init): MagicWrap implies AutoWrap.
Karl Heuer <kwzh@gnu.org>
parents:
11235
diff
changeset
|
1674 the former flag imply the latter. */ |
|
a265aaa699e0
(term_init): MagicWrap implies AutoWrap.
Karl Heuer <kwzh@gnu.org>
parents:
11235
diff
changeset
|
1675 AutoWrap = MagicWrap || tgetflag ("am"); |
| 765 | 1676 memory_below_frame = tgetflag ("db"); |
| 253 | 1677 TF_hazeltine = tgetflag ("hz"); |
| 1678 must_write_spaces = tgetflag ("in"); | |
| 1679 meta_key = tgetflag ("km") || tgetflag ("MT"); | |
| 1680 TF_insmode_motion = tgetflag ("mi"); | |
| 1681 TF_standout_motion = tgetflag ("ms"); | |
| 1682 TF_underscore = tgetflag ("ul"); | |
| 1683 TF_xs = tgetflag ("xs"); | |
| 1684 TF_teleray = tgetflag ("xt"); | |
| 1685 | |
| 533 | 1686 term_get_fkeys (address); |
| 1687 | |
| 765 | 1688 /* Get frame size from system, or else from termcap. */ |
|
16093
4c74d7f1cfa6
(term_init): Avoid type-mismatch calling get_frame_size.
Richard M. Stallman <rms@gnu.org>
parents:
15974
diff
changeset
|
1689 { |
|
4c74d7f1cfa6
(term_init): Avoid type-mismatch calling get_frame_size.
Richard M. Stallman <rms@gnu.org>
parents:
15974
diff
changeset
|
1690 int height, width; |
|
4c74d7f1cfa6
(term_init): Avoid type-mismatch calling get_frame_size.
Richard M. Stallman <rms@gnu.org>
parents:
15974
diff
changeset
|
1691 get_frame_size (&width, &height); |
|
4c74d7f1cfa6
(term_init): Avoid type-mismatch calling get_frame_size.
Richard M. Stallman <rms@gnu.org>
parents:
15974
diff
changeset
|
1692 FRAME_WIDTH (selected_frame) = width; |
|
4c74d7f1cfa6
(term_init): Avoid type-mismatch calling get_frame_size.
Richard M. Stallman <rms@gnu.org>
parents:
15974
diff
changeset
|
1693 FRAME_HEIGHT (selected_frame) = height; |
|
4c74d7f1cfa6
(term_init): Avoid type-mismatch calling get_frame_size.
Richard M. Stallman <rms@gnu.org>
parents:
15974
diff
changeset
|
1694 } |
|
4c74d7f1cfa6
(term_init): Avoid type-mismatch calling get_frame_size.
Richard M. Stallman <rms@gnu.org>
parents:
15974
diff
changeset
|
1695 |
| 765 | 1696 if (FRAME_WIDTH (selected_frame) <= 0) |
|
16260
4468f3277e80
(term_init): Use new vertical scroll bar enumerated type.
Richard M. Stallman <rms@gnu.org>
parents:
16094
diff
changeset
|
1697 SET_FRAME_WIDTH (selected_frame, tgetnum ("co")); |
|
4468f3277e80
(term_init): Use new vertical scroll bar enumerated type.
Richard M. Stallman <rms@gnu.org>
parents:
16094
diff
changeset
|
1698 else |
|
4468f3277e80
(term_init): Use new vertical scroll bar enumerated type.
Richard M. Stallman <rms@gnu.org>
parents:
16094
diff
changeset
|
1699 /* Keep width and external_width consistent */ |
|
4468f3277e80
(term_init): Use new vertical scroll bar enumerated type.
Richard M. Stallman <rms@gnu.org>
parents:
16094
diff
changeset
|
1700 SET_FRAME_WIDTH (selected_frame, FRAME_WIDTH (selected_frame)); |
| 765 | 1701 if (FRAME_HEIGHT (selected_frame) <= 0) |
| 1702 FRAME_HEIGHT (selected_frame) = tgetnum ("li"); | |
|
16260
4468f3277e80
(term_init): Use new vertical scroll bar enumerated type.
Richard M. Stallman <rms@gnu.org>
parents:
16094
diff
changeset
|
1703 |
|
10332
e14daed4a820
(term_init): Fatal error if screen is too small.
Richard M. Stallman <rms@gnu.org>
parents:
10261
diff
changeset
|
1704 if (FRAME_HEIGHT (selected_frame) < 3 |
|
e14daed4a820
(term_init): Fatal error if screen is too small.
Richard M. Stallman <rms@gnu.org>
parents:
10261
diff
changeset
|
1705 || FRAME_WIDTH (selected_frame) < 3) |
|
16894
cd8d6bf6b320
(fatal): Print a newline at the end.
Richard M. Stallman <rms@gnu.org>
parents:
16885
diff
changeset
|
1706 fatal ("Screen size %dx%d is too small", |
|
10332
e14daed4a820
(term_init): Fatal error if screen is too small.
Richard M. Stallman <rms@gnu.org>
parents:
10261
diff
changeset
|
1707 FRAME_HEIGHT (selected_frame), FRAME_WIDTH (selected_frame)); |
|
e14daed4a820
(term_init): Fatal error if screen is too small.
Richard M. Stallman <rms@gnu.org>
parents:
10261
diff
changeset
|
1708 |
| 253 | 1709 min_padding_speed = tgetnum ("pb"); |
| 1710 TN_standout_width = tgetnum ("sg"); | |
| 1711 TabWidth = tgetnum ("tw"); | |
| 1712 | |
| 1713 #ifdef VMS | |
| 1714 /* These capabilities commonly use ^J. | |
| 1715 I don't know why, but sending them on VMS does not work; | |
| 1716 it causes following spaces to be lost, sometimes. | |
| 1717 For now, the simplest fix is to avoid using these capabilities ever. */ | |
| 1718 if (Down && Down[0] == '\n') | |
| 1719 Down = 0; | |
| 1720 #endif /* VMS */ | |
| 1721 | |
| 1722 if (!TS_bell) | |
| 1723 TS_bell = "\07"; | |
| 1724 | |
| 1725 if (!TS_fwd_scroll) | |
| 1726 TS_fwd_scroll = Down; | |
| 1727 | |
| 1728 PC = TS_pad_char ? *TS_pad_char : 0; | |
| 1729 | |
| 1730 if (TabWidth < 0) | |
| 1731 TabWidth = 8; | |
| 1732 | |
| 1733 /* Turned off since /etc/termcap seems to have :ta= for most terminals | |
| 1734 and newer termcap doc does not seem to say there is a default. | |
| 1735 if (!Wcm.cm_tab) | |
| 1736 Wcm.cm_tab = "\t"; | |
| 1737 */ | |
| 1738 | |
| 1739 if (TS_standout_mode == 0) | |
| 1740 { | |
| 1741 TN_standout_width = tgetnum ("ug"); | |
| 1742 TS_end_standout_mode = tgetstr ("ue", address); | |
| 1743 TS_standout_mode = tgetstr ("us", address); | |
| 1744 } | |
| 1745 | |
|
5933
560cee2048ed
(term_init): If no `se', use `me';
Richard M. Stallman <rms@gnu.org>
parents:
5648
diff
changeset
|
1746 /* If no `se' string, try using a `me' string instead. |
|
560cee2048ed
(term_init): If no `se', use `me';
Richard M. Stallman <rms@gnu.org>
parents:
5648
diff
changeset
|
1747 If that fails, we can't use standout mode at all. */ |
|
560cee2048ed
(term_init): If no `se', use `me';
Richard M. Stallman <rms@gnu.org>
parents:
5648
diff
changeset
|
1748 if (TS_end_standout_mode == 0) |
|
560cee2048ed
(term_init): If no `se', use `me';
Richard M. Stallman <rms@gnu.org>
parents:
5648
diff
changeset
|
1749 { |
|
8612
86065bec6fc9
(term_init): Added missing argument to tgetstr.
Richard M. Stallman <rms@gnu.org>
parents:
8027
diff
changeset
|
1750 char *s = tgetstr ("me", address); |
|
5933
560cee2048ed
(term_init): If no `se', use `me';
Richard M. Stallman <rms@gnu.org>
parents:
5648
diff
changeset
|
1751 if (s != 0) |
|
560cee2048ed
(term_init): If no `se', use `me';
Richard M. Stallman <rms@gnu.org>
parents:
5648
diff
changeset
|
1752 TS_end_standout_mode = s; |
|
560cee2048ed
(term_init): If no `se', use `me';
Richard M. Stallman <rms@gnu.org>
parents:
5648
diff
changeset
|
1753 else |
|
560cee2048ed
(term_init): If no `se', use `me';
Richard M. Stallman <rms@gnu.org>
parents:
5648
diff
changeset
|
1754 TS_standout_mode = 0; |
|
560cee2048ed
(term_init): If no `se', use `me';
Richard M. Stallman <rms@gnu.org>
parents:
5648
diff
changeset
|
1755 } |
|
560cee2048ed
(term_init): If no `se', use `me';
Richard M. Stallman <rms@gnu.org>
parents:
5648
diff
changeset
|
1756 |
| 253 | 1757 if (TF_teleray) |
| 1758 { | |
| 1759 Wcm.cm_tab = 0; | |
| 1760 /* Teleray: most programs want a space in front of TS_standout_mode, | |
| 1761 but Emacs can do without it (and give one extra column). */ | |
| 1762 TS_standout_mode = "\033RD"; | |
| 1763 TN_standout_width = 1; | |
| 1764 /* But that means we cannot rely on ^M to go to column zero! */ | |
| 1765 CR = 0; | |
| 1766 /* LF can't be trusted either -- can alter hpos */ | |
| 1767 /* if move at column 0 thru a line with TS_standout_mode */ | |
| 1768 Down = 0; | |
| 1769 } | |
| 1770 | |
| 1771 /* Special handling for certain terminal types known to need it */ | |
| 1772 | |
| 1773 if (!strcmp (terminal_type, "supdup")) | |
| 1774 { | |
| 765 | 1775 memory_below_frame = 1; |
| 253 | 1776 Wcm.cm_losewrap = 1; |
| 1777 } | |
| 1778 if (!strncmp (terminal_type, "c10", 3) | |
| 1779 || !strcmp (terminal_type, "perq")) | |
| 1780 { | |
| 1781 /* Supply a makeshift :wi string. | |
| 1782 This string is not valid in general since it works only | |
| 1783 for windows starting at the upper left corner; | |
| 1784 but that is all Emacs uses. | |
| 1785 | |
| 765 | 1786 This string works only if the frame is using |
| 253 | 1787 the top of the video memory, because addressing is memory-relative. |
| 1788 So first check the :ti string to see if that is true. | |
| 1789 | |
| 1790 It would be simpler if the :wi string could go in the termcap | |
| 1791 entry, but it can't because it is not fully valid. | |
| 1792 If it were in the termcap entry, it would confuse other programs. */ | |
| 1793 if (!TS_set_window) | |
| 1794 { | |
| 1795 p = TS_termcap_modes; | |
| 1796 while (*p && strcmp (p, "\033v ")) | |
| 1797 p++; | |
| 1798 if (*p) | |
| 1799 TS_set_window = "\033v%C %C %C %C "; | |
| 1800 } | |
| 1801 /* Termcap entry often fails to have :in: flag */ | |
| 1802 must_write_spaces = 1; | |
| 1803 /* :ti string typically fails to have \E^G! in it */ | |
| 1804 /* This limits scope of insert-char to one line. */ | |
| 1805 strcpy (area, TS_termcap_modes); | |
| 1806 strcat (area, "\033\007!"); | |
| 1807 TS_termcap_modes = area; | |
| 1808 area += strlen (area) + 1; | |
| 1809 p = AbsPosition; | |
| 1810 /* Change all %+ parameters to %C, to handle | |
| 1811 values above 96 correctly for the C100. */ | |
| 1812 while (*p) | |
| 1813 { | |
| 1814 if (p[0] == '%' && p[1] == '+') | |
| 1815 p[1] = 'C'; | |
| 1816 p++; | |
| 1817 } | |
| 1818 } | |
| 1819 | |
| 765 | 1820 FrameRows = FRAME_HEIGHT (selected_frame); |
| 1821 FrameCols = FRAME_WIDTH (selected_frame); | |
| 1822 specified_window = FRAME_HEIGHT (selected_frame); | |
| 253 | 1823 |
| 1824 if (Wcm_init () == -1) /* can't do cursor motion */ | |
| 1825 #ifdef VMS | |
| 1826 fatal ("Terminal type \"%s\" is not powerful enough to run Emacs.\n\ | |
| 1827 It lacks the ability to position the cursor.\n\ | |
| 1828 If that is not the actual type of terminal you have, use either the\n\ | |
| 1829 DCL command `SET TERMINAL/DEVICE= ...' for DEC-compatible terminals,\n\ | |
|
16894
cd8d6bf6b320
(fatal): Print a newline at the end.
Richard M. Stallman <rms@gnu.org>
parents:
16885
diff
changeset
|
1830 or `define EMACS_TERM \"terminal type\"' for non-DEC terminals.", |
| 253 | 1831 terminal_type); |
|
12412
7f2c068121d8
(term_init): Alternative error messages for TERMCAP/TERMINFO.
Richard M. Stallman <rms@gnu.org>
parents:
12071
diff
changeset
|
1832 #else /* not VMS */ |
|
7f2c068121d8
(term_init): Alternative error messages for TERMCAP/TERMINFO.
Richard M. Stallman <rms@gnu.org>
parents:
12071
diff
changeset
|
1833 # ifdef TERMINFO |
|
7f2c068121d8
(term_init): Alternative error messages for TERMCAP/TERMINFO.
Richard M. Stallman <rms@gnu.org>
parents:
12071
diff
changeset
|
1834 fatal ("Terminal type \"%s\" is not powerful enough to run Emacs.\n\ |
|
7f2c068121d8
(term_init): Alternative error messages for TERMCAP/TERMINFO.
Richard M. Stallman <rms@gnu.org>
parents:
12071
diff
changeset
|
1835 It lacks the ability to position the cursor.\n\ |
|
7f2c068121d8
(term_init): Alternative error messages for TERMCAP/TERMINFO.
Richard M. Stallman <rms@gnu.org>
parents:
12071
diff
changeset
|
1836 If that is not the actual type of terminal you have,\n\ |
|
7f2c068121d8
(term_init): Alternative error messages for TERMCAP/TERMINFO.
Richard M. Stallman <rms@gnu.org>
parents:
12071
diff
changeset
|
1837 use the Bourne shell command `TERM=... export TERM' (C-shell:\n\ |
|
7f2c068121d8
(term_init): Alternative error messages for TERMCAP/TERMINFO.
Richard M. Stallman <rms@gnu.org>
parents:
12071
diff
changeset
|
1838 `setenv TERM ...') to specify the correct type. It may be necessary\n\ |
|
16894
cd8d6bf6b320
(fatal): Print a newline at the end.
Richard M. Stallman <rms@gnu.org>
parents:
16885
diff
changeset
|
1839 to do `unset TERMINFO' (C-shell: `unsetenv TERMINFO') as well.", |
|
12412
7f2c068121d8
(term_init): Alternative error messages for TERMCAP/TERMINFO.
Richard M. Stallman <rms@gnu.org>
parents:
12071
diff
changeset
|
1840 terminal_type); |
|
7f2c068121d8
(term_init): Alternative error messages for TERMCAP/TERMINFO.
Richard M. Stallman <rms@gnu.org>
parents:
12071
diff
changeset
|
1841 # else /* TERMCAP */ |
| 253 | 1842 fatal ("Terminal type \"%s\" is not powerful enough to run Emacs.\n\ |
| 1843 It lacks the ability to position the cursor.\n\ | |
| 1844 If that is not the actual type of terminal you have,\n\ | |
|
4499
c7bfd863aefd
(term_init): Improve error messages (give sh commands).
Richard M. Stallman <rms@gnu.org>
parents:
3706
diff
changeset
|
1845 use the Bourne shell command `TERM=... export TERM' (C-shell:\n\ |
|
c7bfd863aefd
(term_init): Improve error messages (give sh commands).
Richard M. Stallman <rms@gnu.org>
parents:
3706
diff
changeset
|
1846 `setenv TERM ...') to specify the correct type. It may be necessary\n\ |
|
16894
cd8d6bf6b320
(fatal): Print a newline at the end.
Richard M. Stallman <rms@gnu.org>
parents:
16885
diff
changeset
|
1847 to do `unset TERMCAP' (C-shell: `unsetenv TERMCAP') as well.", |
| 253 | 1848 terminal_type); |
|
12412
7f2c068121d8
(term_init): Alternative error messages for TERMCAP/TERMINFO.
Richard M. Stallman <rms@gnu.org>
parents:
12071
diff
changeset
|
1849 # endif /* TERMINFO */ |
|
7f2c068121d8
(term_init): Alternative error messages for TERMCAP/TERMINFO.
Richard M. Stallman <rms@gnu.org>
parents:
12071
diff
changeset
|
1850 #endif /*VMS */ |
| 765 | 1851 if (FRAME_HEIGHT (selected_frame) <= 0 |
| 1852 || FRAME_WIDTH (selected_frame) <= 0) | |
|
16894
cd8d6bf6b320
(fatal): Print a newline at the end.
Richard M. Stallman <rms@gnu.org>
parents:
16885
diff
changeset
|
1853 fatal ("The frame size has not been specified"); |
| 253 | 1854 |
| 1855 delete_in_insert_mode | |
| 1856 = TS_delete_mode && TS_insert_mode | |
| 1857 && !strcmp (TS_delete_mode, TS_insert_mode); | |
| 1858 | |
| 1859 se_is_so = (TS_standout_mode | |
| 1860 && TS_end_standout_mode | |
| 1861 && !strcmp (TS_standout_mode, TS_end_standout_mode)); | |
| 1862 | |
| 1863 /* Remove width of standout marker from usable width of line */ | |
| 1864 if (TN_standout_width > 0) | |
|
16260
4468f3277e80
(term_init): Use new vertical scroll bar enumerated type.
Richard M. Stallman <rms@gnu.org>
parents:
16094
diff
changeset
|
1865 SET_FRAME_WIDTH (selected_frame, |
|
4468f3277e80
(term_init): Use new vertical scroll bar enumerated type.
Richard M. Stallman <rms@gnu.org>
parents:
16094
diff
changeset
|
1866 FRAME_WIDTH (selected_frame) - TN_standout_width); |
| 253 | 1867 |
| 1868 UseTabs = tabs_safe_p () && TabWidth == 8; | |
| 1869 | |
| 1870 scroll_region_ok | |
| 1871 = (Wcm.cm_abs | |
| 1872 && (TS_set_window || TS_set_scroll_region || TS_set_scroll_region_1)); | |
| 1873 | |
| 1874 line_ins_del_ok = (((TS_ins_line || TS_ins_multi_lines) | |
| 1875 && (TS_del_line || TS_del_multi_lines)) | |
| 1876 || (scroll_region_ok && TS_fwd_scroll && TS_rev_scroll)); | |
| 1877 | |
| 1878 char_ins_del_ok = ((TS_ins_char || TS_insert_mode | |
| 1879 || TS_pad_inserted_char || TS_ins_multi_chars) | |
| 1880 && (TS_del_char || TS_del_multi_chars)); | |
| 1881 | |
| 1882 fast_clear_end_of_line = TS_clr_line != 0; | |
| 1883 | |
| 1884 init_baud_rate (); | |
| 1885 if (read_socket_hook) /* Baudrate is somewhat */ | |
| 1886 /* meaningless in this case */ | |
| 1887 baud_rate = 9600; | |
|
1717
aa7d6d57504b
* frame.h (struct frame): New fields `can_have_scrollbars' and
Jim Blandy <jimb@redhat.com>
parents:
1015
diff
changeset
|
1888 |
|
1994
73ce9dd21093
Use the term `scroll bar', instead of `scrollbar'.
Jim Blandy <jimb@redhat.com>
parents:
1821
diff
changeset
|
1889 FRAME_CAN_HAVE_SCROLL_BARS (selected_frame) = 0; |
|
16260
4468f3277e80
(term_init): Use new vertical scroll bar enumerated type.
Richard M. Stallman <rms@gnu.org>
parents:
16094
diff
changeset
|
1890 FRAME_VERTICAL_SCROLL_BAR_TYPE (selected_frame) = vertical_scroll_bar_none; |
| 253 | 1891 } |
| 1892 | |
| 1893 /* VARARGS 1 */ | |
| 1894 fatal (str, arg1, arg2) | |
| 621 | 1895 char *str, *arg1, *arg2; |
| 253 | 1896 { |
| 1897 fprintf (stderr, "emacs: "); | |
| 1898 fprintf (stderr, str, arg1, arg2); | |
|
16894
cd8d6bf6b320
(fatal): Print a newline at the end.
Richard M. Stallman <rms@gnu.org>
parents:
16885
diff
changeset
|
1899 fprintf (stderr, "\n"); |
| 253 | 1900 fflush (stderr); |
| 1901 exit (1); | |
| 1902 } | |
|
6752
f9236145bad7
(system_uses_terminfo): New variable.
Karl Heuer <kwzh@gnu.org>
parents:
6652
diff
changeset
|
1903 |
|
f9236145bad7
(system_uses_terminfo): New variable.
Karl Heuer <kwzh@gnu.org>
parents:
6652
diff
changeset
|
1904 syms_of_term () |
|
f9236145bad7
(system_uses_terminfo): New variable.
Karl Heuer <kwzh@gnu.org>
parents:
6652
diff
changeset
|
1905 { |
|
f9236145bad7
(system_uses_terminfo): New variable.
Karl Heuer <kwzh@gnu.org>
parents:
6652
diff
changeset
|
1906 DEFVAR_BOOL ("system-uses-terminfo", &system_uses_terminfo, |
|
f9236145bad7
(system_uses_terminfo): New variable.
Karl Heuer <kwzh@gnu.org>
parents:
6652
diff
changeset
|
1907 "Non-nil means the system uses terminfo rather than termcap.\n\ |
|
f9236145bad7
(system_uses_terminfo): New variable.
Karl Heuer <kwzh@gnu.org>
parents:
6652
diff
changeset
|
1908 This variable can be used by terminal emulator packages."); |
|
f9236145bad7
(system_uses_terminfo): New variable.
Karl Heuer <kwzh@gnu.org>
parents:
6652
diff
changeset
|
1909 #ifdef TERMINFO |
|
f9236145bad7
(system_uses_terminfo): New variable.
Karl Heuer <kwzh@gnu.org>
parents:
6652
diff
changeset
|
1910 system_uses_terminfo = 1; |
|
f9236145bad7
(system_uses_terminfo): New variable.
Karl Heuer <kwzh@gnu.org>
parents:
6652
diff
changeset
|
1911 #else |
|
f9236145bad7
(system_uses_terminfo): New variable.
Karl Heuer <kwzh@gnu.org>
parents:
6652
diff
changeset
|
1912 system_uses_terminfo = 0; |
|
f9236145bad7
(system_uses_terminfo): New variable.
Karl Heuer <kwzh@gnu.org>
parents:
6652
diff
changeset
|
1913 #endif |
|
15974
61249a8fe735
(Vring_bell_function): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
15094
diff
changeset
|
1914 |
|
61249a8fe735
(Vring_bell_function): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
15094
diff
changeset
|
1915 DEFVAR_LISP ("ring-bell-function", &Vring_bell_function, |
|
61249a8fe735
(Vring_bell_function): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
15094
diff
changeset
|
1916 "Non-nil means call this function to ring the bell.\n\ |
|
61249a8fe735
(Vring_bell_function): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
15094
diff
changeset
|
1917 The function should accept no arguments."); |
|
61249a8fe735
(Vring_bell_function): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
15094
diff
changeset
|
1918 Vring_bell_function = Qnil; |
|
6752
f9236145bad7
(system_uses_terminfo): New variable.
Karl Heuer <kwzh@gnu.org>
parents:
6652
diff
changeset
|
1919 } |
