Mercurial > emacs
annotate src/commands.h @ 4139:0b32ee899a3a
Consistently use the mark bit of the root interval's parent field
to say whether or not the interval tree has been visited (and skip
it when revisited), and the mark bit of the plist field to say
whether or not that interval has been visited (and abort if
revisited); don't try to use the plist mark bit for both
meanings.
* alloc.c (mark_interval_tree): Don't test if the interval tree
has already been visited here; let the MARK_INTERVAL_TREE macro do
that; avoid function call overhead. Mark the interval tree as
having been visited by setting TREE->parent's mark bit.
(MARK_INTERVAL_TREE): If the tree has been visited (according to
I->parent's mark bit), don't call mark_interval_tree.
(gc_sweep): Rebalance the interval trees of those large strings
which are still alive. This also clears the mark bits of those
trees' root intervals' parent fields.
(compact_strings): Rebalance the interval tree of each small
strings which is still alive. This also clears the mark bits of
that tree's root interval's parent field. Since the string has
moved, update the root interval's parent pointer to contain the
new address.
* lisp.h (struct interval): Doc fix; explain the roles of the mark
bits of the parent and plist members.
author | Jim Blandy <jimb@redhat.com> |
---|---|
date | Sun, 18 Jul 1993 06:26:10 +0000 |
parents | 92f6b47e3e8d |
children | e2bb2d0b8a00 |
rev | line source |
---|---|
239 | 1 /* Definitions needed by most editing commands. |
2 Copyright (C) 1985 Free Software Foundation, Inc. | |
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 | |
8 the Free Software Foundation; either version 1, or (at your option) | |
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 | |
18 the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ | |
19 | |
20 | |
21 #define Ctl(c) ((c)&037) | |
22 | |
3886
92f6b47e3e8d
* keyboard.c (menu_bar_items, read_key_sequence): Use
Jim Blandy <jimb@redhat.com>
parents:
1821
diff
changeset
|
23 /* Define the names of keymaps, just so people can refer to them in |
92f6b47e3e8d
* keyboard.c (menu_bar_items, read_key_sequence): Use
Jim Blandy <jimb@redhat.com>
parents:
1821
diff
changeset
|
24 calls to initial_define_key. These should *not* be used after |
92f6b47e3e8d
* keyboard.c (menu_bar_items, read_key_sequence): Use
Jim Blandy <jimb@redhat.com>
parents:
1821
diff
changeset
|
25 initialization; use-global-map doesn't affect these; it sets |
92f6b47e3e8d
* keyboard.c (menu_bar_items, read_key_sequence): Use
Jim Blandy <jimb@redhat.com>
parents:
1821
diff
changeset
|
26 current_global_map instead. */ |
239 | 27 extern Lisp_Object global_map; |
28 extern Lisp_Object meta_map; | |
29 extern Lisp_Object control_x_map; | |
30 | |
31 extern Lisp_Object Vminibuffer_local_map; | |
32 | |
33 extern Lisp_Object Vminibuffer_local_ns_map; | |
34 | |
35 /* keymap used for minibuffers when doing completion */ | |
36 extern Lisp_Object Vminibuffer_local_completion_map; | |
37 | |
38 /* keymap used for minibuffers when doing completion and require a match */ | |
39 extern Lisp_Object Vminibuffer_local_must_match_map; | |
40 | |
41 /* Last character of last key sequence. */ | |
42 extern Lisp_Object last_command_char; | |
43 | |
1080 | 44 /* Last input character read as a command, not counting menus |
45 reached by the mouse. */ | |
46 extern Lisp_Object last_nonmenu_event; | |
47 | |
1821
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1587
diff
changeset
|
48 /* List of command events to be re-read, or Qnil. */ |
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1587
diff
changeset
|
49 extern Lisp_Object unread_command_events; |
1587
57ae5625fe22
* commands.h (unread_command_event): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1507
diff
changeset
|
50 |
57ae5625fe22
* commands.h (unread_command_event): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1507
diff
changeset
|
51 /* If not Qnil, this is a switch-frame event which we decided to put |
57ae5625fe22
* commands.h (unread_command_event): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1507
diff
changeset
|
52 off until the end of a key sequence. This should be read as the |
1821
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1587
diff
changeset
|
53 next command input, after any unread_command_events. |
1587
57ae5625fe22
* commands.h (unread_command_event): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1507
diff
changeset
|
54 |
57ae5625fe22
* commands.h (unread_command_event): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1507
diff
changeset
|
55 read_key_sequence uses this to delay switch-frame events until the |
57ae5625fe22
* commands.h (unread_command_event): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1507
diff
changeset
|
56 end of the key sequence; Fread_char uses it to put off switch-frame |
57ae5625fe22
* commands.h (unread_command_event): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1507
diff
changeset
|
57 events until a non-ASCII event is acceptable as input. */ |
57ae5625fe22
* commands.h (unread_command_event): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1507
diff
changeset
|
58 extern Lisp_Object unread_switch_frame; |
239 | 59 |
60 /* Previous command symbol found here for comparison */ | |
61 extern Lisp_Object last_command; | |
62 | |
63 /* Nonzero means ^G can quit instantly */ | |
64 extern int immediate_quit; | |
65 | |
66 extern Lisp_Object Vexecuting_macro; | |
67 | |
68 /* Nonzero if input is coming from the keyboard */ | |
69 | |
485 | 70 #define INTERACTIVE (NILP (Vexecuting_macro) && !noninteractive) |
239 | 71 |
72 /* Set this nonzero to force reconsideration of mode line. */ | |
73 | |
74 extern int update_mode_lines; | |
75 | |
76 /* Nonzero means reading single-character input with prompt | |
77 so put cursor on minibuffer after the prompt. */ | |
78 | |
79 extern int cursor_in_echo_area; |