X-Git-Url: https://code.delx.au/gnu-emacs/blobdiff_plain/9075fcc1937a211bc91e8bc49c332bc55ac99e24..0247489fed0f70b2abf960de48bc4432381a581b:/src/commands.h diff --git a/src/commands.h b/src/commands.h index 1a09f68356..e9383341cc 100644 --- a/src/commands.h +++ b/src/commands.h @@ -1,5 +1,5 @@ /* Definitions needed by most editing commands. - Copyright (C) 1985, 1994, 2001-2014 Free Software Foundation, Inc. + Copyright (C) 1985, 1994, 2001-2015 Free Software Foundation, Inc. This file is part of GNU Emacs. @@ -16,6 +16,10 @@ GNU General Public License for more details. You should have received a copy of the GNU General Public License along with GNU Emacs. If not, see . */ +#ifndef EMACS_COMMANDS_H +#define EMACS_COMMANDS_H + +#include "lisp.h" #define Ctl(c) ((c)&037) @@ -39,3 +43,5 @@ extern Lisp_Object unread_switch_frame; /* Nonzero if input is coming from the keyboard. */ #define INTERACTIVE (NILP (Vexecuting_kbd_macro) && !noninteractive) + +#endif /* EMACS_COMMANDS_H */