Improve responsiveness while in 'replace-buffer-contents'
[emacs.git] / src / commands.h
bloba741da14fff62323858a503d3b39b05b9b13ae17
1 /* Definitions needed by most editing commands.
2 Copyright (C) 1985, 1994, 2001-2018 Free Software Foundation, Inc.
4 This file is part of GNU Emacs.
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 3 of the License, or (at
9 your option) any later version.
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.
16 You should have received a copy of the GNU General Public License
17 along with GNU Emacs. If not, see <https://www.gnu.org/licenses/>. */
19 #ifndef EMACS_COMMANDS_H
20 #define EMACS_COMMANDS_H
22 #include "lisp.h"
24 #define Ctl(c) ((c)&037)
26 /* Define the names of keymaps, just so people can refer to them in
27 calls to initial_define_key. These should *not* be used after
28 initialization; use-global-map doesn't affect these; it sets
29 current_global_map instead. */
30 extern Lisp_Object global_map;
31 extern Lisp_Object meta_map;
32 extern Lisp_Object control_x_map;
34 /* If not Qnil, this is a switch-frame event which we decided to put
35 off until the end of a key sequence. This should be read as the
36 next command input, after any Vunread_command_events.
38 read_key_sequence uses this to delay switch-frame events until the
39 end of the key sequence; Fread_char uses it to put off switch-frame
40 events until a non-ASCII event is acceptable as input. */
41 extern Lisp_Object unread_switch_frame;
43 /* Nonzero if input is coming from the keyboard. */
45 #define INTERACTIVE (NILP (Vexecuting_kbd_macro) && !noninteractive)
47 #endif /* EMACS_COMMANDS_H */