Switch license to GPLv3 or later.
[bpt/emacs.git] / src / commands.h
CommitLineData
cd645247 1/* Definitions needed by most editing commands.
429ab54e
GM
2 Copyright (C) 1985, 1994, 2001, 2002, 2003, 2004,
3 2005, 2006, 2007 Free Software Foundation, Inc.
cd645247
JB
4
5This file is part of GNU Emacs.
6
7GNU Emacs is free software; you can redistribute it and/or modify
8it under the terms of the GNU General Public License as published by
684d6f5b 9the Free Software Foundation; either version 3, or (at your option)
cd645247
JB
10any later version.
11
12GNU Emacs is distributed in the hope that it will be useful,
13but WITHOUT ANY WARRANTY; without even the implied warranty of
14MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15GNU General Public License for more details.
16
17You should have received a copy of the GNU General Public License
18along with GNU Emacs; see the file COPYING. If not, write to
4fc5845f
LK
19the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
20Boston, MA 02110-1301, USA. */
cd645247
JB
21
22
23#define Ctl(c) ((c)&037)
24
6ce387e6
JB
25/* Define the names of keymaps, just so people can refer to them in
26 calls to initial_define_key. These should *not* be used after
27 initialization; use-global-map doesn't affect these; it sets
28 current_global_map instead. */
cd645247 29extern Lisp_Object global_map;
cd645247 30extern Lisp_Object meta_map;
cd645247
JB
31extern Lisp_Object control_x_map;
32
cd645247
JB
33extern Lisp_Object Vminibuffer_local_map;
34
35extern Lisp_Object Vminibuffer_local_ns_map;
36
37/* keymap used for minibuffers when doing completion */
38extern Lisp_Object Vminibuffer_local_completion_map;
39
90385b3d
EZ
40/* keymap used for minibuffers when doing completion in filenames*/
41extern Lisp_Object Vminibuffer_local_filename_completion_map;
42
cd645247
JB
43/* keymap used for minibuffers when doing completion and require a match */
44extern Lisp_Object Vminibuffer_local_must_match_map;
45
90385b3d
EZ
46/* keymap used for minibuffers when doing completion in filenames
47 and require a match */
48extern Lisp_Object Vminibuffer_local_must_match_filename_map;
49
cd645247
JB
50/* Last character of last key sequence. */
51extern Lisp_Object last_command_char;
52
07f4ea75
RS
53/* Last input character read as a command, not counting menus
54 reached by the mouse. */
55extern Lisp_Object last_nonmenu_event;
56
dbc4e1c1 57/* List of command events to be re-read, or Qnil. */
1ad698af 58extern Lisp_Object Vunread_command_events;
ef733244 59
346dae05
RS
60/* Command char event to be re-read, or -1 if none.
61 Setting this is obsolete, but some things should still check it. */
31ade731 62extern EMACS_INT unread_command_char;
346dae05 63
c5a02c74 64/* The command being executed by the command loop.
185fd0ec
KH
65 Commands may set this, and the value set will be copied into
66 current_kboard->Vlast_command instead of the actual command. */
e717e6d7 67extern Lisp_Object Vthis_command;
c5a02c74 68
ef733244
JB
69/* If not Qnil, this is a switch-frame event which we decided to put
70 off until the end of a key sequence. This should be read as the
1ad698af 71 next command input, after any Vunread_command_events.
ef733244
JB
72
73 read_key_sequence uses this to delay switch-frame events until the
74 end of the key sequence; Fread_char uses it to put off switch-frame
75 events until a non-ASCII event is acceptable as input. */
76extern Lisp_Object unread_switch_frame;
cd645247 77
74338b5e 78/* The value of point when the last command was started. */
01314b95
KH
79extern int last_point_position;
80
0f5f2096
RS
81/* The buffer that was current when the last command was started. */
82extern Lisp_Object last_point_position_buffer;
83
74338b5e
RS
84/* The window that was selected when the last command was started. */
85extern Lisp_Object last_point_position_window;
86
cd645247
JB
87/* Nonzero means ^G can quit instantly */
88extern int immediate_quit;
89
0aed526e 90extern Lisp_Object Vexecuting_kbd_macro;
cd645247
JB
91
92/* Nonzero if input is coming from the keyboard */
93
0aed526e 94#define INTERACTIVE (NILP (Vexecuting_kbd_macro) && !noninteractive)
cd645247
JB
95
96/* Set this nonzero to force reconsideration of mode line. */
97
98extern int update_mode_lines;
99
100/* Nonzero means reading single-character input with prompt
101 so put cursor on minibuffer after the prompt. */
102
103extern int cursor_in_echo_area;
ab5796a9
MB
104
105/* arch-tag: 4f7ca0b7-6a56-4b20-8bf5-b67a99921d1d
106 (do not change this comment) */