annotate src/conslots.h @ 0:376386a54a3c r19-14

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