Update GPL to version 2.
[bpt/emacs.git] / src / commands.h
1 /* Definitions needed by most editing commands.
2 Copyright (C) 1985, 1994 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 2, 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
23 /* Define the names of keymaps, just so people can refer to them in
24 calls to initial_define_key. These should *not* be used after
25 initialization; use-global-map doesn't affect these; it sets
26 current_global_map instead. */
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
44 /* Last input character read as a command, not counting menus
45 reached by the mouse. */
46 extern Lisp_Object last_nonmenu_event;
47
48 /* List of command events to be re-read, or Qnil. */
49 extern Lisp_Object Vunread_command_events;
50
51 /* Command char event to be re-read, or -1 if none.
52 Setting this is obsolete, but some things should still check it. */
53 extern int unread_command_char;
54
55 /* The command being executed by the command loop.
56 Commands may set this, and the value set will be copied into
57 current_kboard->Vlast_command instead of the actual command. */
58 extern Lisp_Object this_command;
59
60 /* If not Qnil, this is a switch-frame event which we decided to put
61 off until the end of a key sequence. This should be read as the
62 next command input, after any Vunread_command_events.
63
64 read_key_sequence uses this to delay switch-frame events until the
65 end of the key sequence; Fread_char uses it to put off switch-frame
66 events until a non-ASCII event is acceptable as input. */
67 extern Lisp_Object unread_switch_frame;
68
69 /* The value of point when the last command was executed. */
70 extern int last_point_position;
71
72 /* The buffer that was current when the last command was started. */
73 extern Lisp_Object last_point_position_buffer;
74
75 /* Nonzero means ^G can quit instantly */
76 extern int immediate_quit;
77
78 extern Lisp_Object Vexecuting_macro;
79
80 /* Nonzero if input is coming from the keyboard */
81
82 #define INTERACTIVE (NILP (Vexecuting_macro) && !noninteractive)
83
84 /* Set this nonzero to force reconsideration of mode line. */
85
86 extern int update_mode_lines;
87
88 /* Nonzero means reading single-character input with prompt
89 so put cursor on minibuffer after the prompt. */
90
91 extern int cursor_in_echo_area;