0
|
1 /* Definitions of marked slots in consoles
|
|
2 Copyright (C) 1990, 1992, 1993 Free Software Foundation, Inc.
|
|
3
|
|
4 This file is part of XEmacs.
|
|
5
|
|
6 XEmacs is free software; you can redistribute it and/or modify it
|
|
7 under the terms of the GNU General Public License as published by the
|
|
8 Free Software Foundation; either version 2, or (at your option) any
|
|
9 later version.
|
|
10
|
|
11 XEmacs is distributed in the hope that it will be useful, but WITHOUT
|
|
12 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
|
13 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
|
14 for more details.
|
|
15
|
|
16 You should have received a copy of the GNU General Public License
|
|
17 along with XEmacs; see the file COPYING. If not, write to
|
|
18 the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
|
|
19 Boston, MA 02111-1307, USA. */
|
|
20
|
|
21 /* Synched up with: Mule 2.0, FSF 19.30. (see FSF keyboard.h.) */
|
|
22
|
|
23 /* In the declaration of the console structure, this file is included
|
|
24 after defining MARKED_SLOT(x) to be Lisp_Object x; i.e. just a slot
|
|
25 definition. In the garbage collector this file is included after
|
|
26 defining MARKED_SLOT(x) to be mark_object(console->x). */
|
|
27
|
|
28 /* Name of this console, for resourcing and printing purposes.
|
|
29 If not explicitly given, it's initialized in a console-specific
|
|
30 manner. */
|
|
31 MARKED_SLOT (name);
|
|
32
|
|
33 /* What this console is connected to */
|
|
34 MARKED_SLOT (connection);
|
|
35
|
|
36 /* A canonical name for the connection that is used to determine
|
|
37 whether create_console() is being called on an existing console. */
|
|
38 MARKED_SLOT (canon_connection);
|
|
39
|
|
40 /* List of devices on this console. */
|
|
41 MARKED_SLOT (device_list);
|
|
42
|
|
43 /* Currently selected device. */
|
|
44 MARKED_SLOT (selected_device);
|
|
45
|
|
46 /* Most-recently-selected non-minibuffer-only frame. Always
|
|
47 the same as the selected frame, unless that's a minibuffer-only
|
|
48 frame. */
|
|
49 MARKED_SLOT (_last_nonminibuf_frame);
|
|
50
|
|
51 /* If non-nil, a keymap that overrides all others but applies only to
|
|
52 this console. Lisp code that uses this instead of calling next-event
|
|
53 can effectively wait for input in the any-console state, and hence
|
|
54 avoid blocking out the other consoles. See universal-argument in
|
|
55 lisp/simple.el for an example.
|
|
56
|
|
57 #### This comes from FSF Emacs; but there's probably a better
|
|
58 solution that involves making next-event itself work over all
|
|
59 consoles. */
|
|
60 MARKED_SLOT (overriding_terminal_local_map);
|
|
61
|
|
62 /* Last command executed by the editor command loop, not counting
|
|
63 commands that set the prefix argument. */
|
|
64 MARKED_SLOT (last_command);
|
|
65
|
|
66 /* The prefix argument for the next command, in raw form. */
|
|
67 MARKED_SLOT (prefix_arg);
|
|
68
|
|
69 /* Where information about a partially completed key sequence
|
|
70 is kept. */
|
|
71 MARKED_SLOT (command_builder);
|
|
72
|
|
73 /* Non-nil while a kbd macro is being defined. */
|
|
74 MARKED_SLOT (defining_kbd_macro);
|
|
75
|
|
76 /* This is a lisp vector, which contains the events of the keyboard macro
|
|
77 currently being read. It is reallocated when the macro gets too large.
|
|
78 */
|
|
79 MARKED_SLOT (kbd_macro_builder);
|
|
80
|
|
81 /* Last anonymous kbd macro defined. */
|
|
82 MARKED_SLOT (last_kbd_macro);
|
|
83
|
|
84 /* Minibufferless frames on this console use this frame's minibuffer. */
|
|
85 MARKED_SLOT (default_minibuffer_frame);
|
|
86
|
|
87 /* Keymap mapping ASCII function key sequences onto their preferred forms.
|
|
88 Initialized by the terminal-specific lisp files. */
|
|
89 MARKED_SLOT (function_key_map);
|
|
90
|
|
91
|