diff options
Diffstat (limited to 'src/macros.h')
-rw-r--r-- | src/macros.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/macros.h b/src/macros.h index eab8041e72d..46150ad73ae 100644 --- a/src/macros.h +++ b/src/macros.h @@ -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 <http://www.gnu.org/licenses/>. */ +#ifndef EMACS_MACROS_H +#define EMACS_MACROS_H + +#include "lisp.h" /* Number of successful iterations so far for innermost keyboard macro. @@ -42,3 +46,5 @@ extern void finalize_kbd_macro_chars (void); /* Store a character into kbd macro being defined */ extern void store_kbd_macro_char (Lisp_Object); + +#endif /* EMACS_MACROS_H */ |