merge from 1.8 branch
[bpt/guile.git] / libguile / macros.h
CommitLineData
99027e3c
MD
1/* classes: h_files */
2
22a52da1
DH
3#ifndef SCM_MACROS_H
4#define SCM_MACROS_H
0527e687 5
2b829bbb 6/* Copyright (C) 1998,2000,2001,2002,2003, 2006 Free Software Foundation, Inc.
0527e687 7 *
73be1d9e
MV
8 * This library is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU Lesser General Public
10 * License as published by the Free Software Foundation; either
11 * version 2.1 of the License, or (at your option) any later version.
0527e687 12 *
73be1d9e 13 * This library is distributed in the hope that it will be useful,
99027e3c 14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
73be1d9e
MV
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16 * Lesser General Public License for more details.
0527e687 17 *
73be1d9e
MV
18 * You should have received a copy of the GNU Lesser General Public
19 * License along with this library; if not, write to the Free Software
92205699 20 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
73be1d9e 21 */
0527e687 22
99027e3c
MD
23\f
24
25#include "libguile/__scm.h"
26
27\f
28
160bb34a 29#define SCM_ASSYNT(_cond, _msg, _subr) \
e11208ca 30 if (!(_cond)) scm_misc_error (_subr, _msg, SCM_EOL);
99027e3c 31
f5710d53
MV
32#define SCM_MACROP(x) SCM_SMOB_PREDICATE (scm_tc16_macro, (x))
33#define SCM_MACRO_TYPE(m) SCM_SMOB_FLAGS (m)
3b88ed2a 34#define SCM_BUILTIN_MACRO_P(x) (SCM_MACROP (x) && SCM_MACRO_TYPE (x) == 3)
f5710d53 35#define SCM_MACRO_CODE(m) SCM_SMOB_OBJECT (m)
22a52da1 36
33b001fd 37SCM_API scm_t_bits scm_tc16_macro;
99027e3c 38
3b88ed2a 39SCM_API SCM scm_i_makbimacro (SCM code);
33b001fd 40SCM_API SCM scm_makmmacro (SCM code);
3b88ed2a 41SCM_API SCM scm_makacro (SCM code);
33b001fd
MV
42SCM_API SCM scm_macro_p (SCM obj);
43SCM_API SCM scm_macro_type (SCM m);
44SCM_API SCM scm_macro_name (SCM m);
45SCM_API SCM scm_macro_transformer (SCM m);
46SCM_API SCM scm_make_synt (const char *name,
47 SCM (*macroizer) (SCM),
48 SCM (*fcn) ());
49SCM_API void scm_init_macros (void);
99027e3c 50
3063e30a
DH
51#if SCM_ENABLE_DEPRECATED == 1
52SCM_API SCM scm_makmacro (SCM code);
53#endif
54
0527e687 55#endif /* SCM_MACROS_H */
89e00824
ML
56
57/*
58 Local Variables:
59 c-file-style: "gnu"
60 End:
61*/