428
+ − 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
617
+ − 23 /* We define the Lisp_Objects in the console structure in a separate file
+ − 24 because there are numerous places we want to iterate over them, such
+ − 25 as when defining them in the structure, initializing them, or marking
+ − 26 them.
+ − 27
+ − 28 To use, define MARKED_SLOT before including this file. No need to
+ − 29 undefine; that happens automatically. */
428
+ − 30
+ − 31 #ifndef CONSOLE_SLOTS_FIRST_NAME
+ − 32 #define CONSOLE_SLOTS_FIRST_NAME name
+ − 33 #endif
+ − 34
+ − 35 /* Name of this console, for resourcing and printing purposes.
+ − 36 If not explicitly given, it's initialized in a console-specific
+ − 37 manner. */
+ − 38 MARKED_SLOT (name);
+ − 39
+ − 40 /* What this console is connected to */
+ − 41 MARKED_SLOT (connection);
+ − 42
+ − 43 /* A canonical name for the connection that is used to determine
+ − 44 whether create_console() is being called on an existing console. */
+ − 45 MARKED_SLOT (canon_connection);
+ − 46
+ − 47 /* List of devices on this console. */
+ − 48 MARKED_SLOT (device_list);
+ − 49
+ − 50 /* Currently selected device. */
+ − 51 MARKED_SLOT (selected_device);
+ − 52
+ − 53 /* Most-recently-selected non-minibuffer-only frame. Always
+ − 54 the same as the selected frame, unless that's a minibuffer-only
+ − 55 frame. */
+ − 56 MARKED_SLOT (last_nonminibuf_frame);
+ − 57
+ − 58 /* If non-nil, a keymap that overrides all others but applies only to
+ − 59 this console. Lisp code that uses this instead of calling next-event
+ − 60 can effectively wait for input in the any-console state, and hence
+ − 61 avoid blocking out the other consoles. See universal-argument in
+ − 62 lisp/simple.el for an example.
+ − 63
+ − 64 #### This comes from FSF Emacs; but there's probably a better
+ − 65 solution that involves making next-event itself work over all
+ − 66 consoles. */
+ − 67 MARKED_SLOT (overriding_terminal_local_map);
+ − 68
+ − 69 /* Last command executed by the editor command loop, not counting
+ − 70 commands that set the prefix argument. */
+ − 71 MARKED_SLOT (last_command);
+ − 72
+ − 73 /* The prefix argument for the next command, in raw form. */
+ − 74 MARKED_SLOT (prefix_arg);
+ − 75
+ − 76 /* Where information about a partially completed key sequence
+ − 77 is kept. */
+ − 78 MARKED_SLOT (command_builder);
+ − 79
+ − 80 /* Non-nil while a kbd macro is being defined. */
+ − 81 MARKED_SLOT (defining_kbd_macro);
+ − 82
+ − 83 /* This is a lisp vector, which contains the events of the keyboard macro
+ − 84 currently being read. It is reallocated when the macro gets too large.
+ − 85 */
+ − 86 MARKED_SLOT (kbd_macro_builder);
+ − 87
+ − 88 /* Last anonymous kbd macro defined. */
+ − 89 MARKED_SLOT (last_kbd_macro);
+ − 90
+ − 91 #ifdef HAVE_TTY
+ − 92 /* ERASE character from stty settings. */
+ − 93 MARKED_SLOT (tty_erase_char);
+ − 94 #endif
+ − 95
+ − 96 /* Minibufferless frames on this console use this frame's minibuffer. */
+ − 97 MARKED_SLOT (default_minibuffer_frame);
+ − 98
+ − 99 /* Keymap mapping ASCII function key sequences onto their preferred forms.
+ − 100 Initialized by the terminal-specific lisp files. */
+ − 101 MARKED_SLOT (function_key_map);
+ − 102
+ − 103 #ifndef CONSOLE_SLOTS_LAST_NAME
+ − 104 #define CONSOLE_SLOTS_LAST_NAME function_key_map
+ − 105 #endif
+ − 106
617
+ − 107 #undef MARKED_SLOT