diff options
Diffstat (limited to 'libguile/macros.h')
-rw-r--r-- | libguile/macros.h | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/libguile/macros.h b/libguile/macros.h index 05f86ca9a..b41d4f234 100644 --- a/libguile/macros.h +++ b/libguile/macros.h @@ -3,7 +3,7 @@ #ifndef SCM_MACROS_H #define SCM_MACROS_H -/* Copyright (C) 1998,2000,2001 Free Software Foundation, Inc. +/* Copyright (C) 1998,2000,2001,2002 Free Software Foundation, Inc. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -60,7 +60,6 @@ SCM_API scm_t_bits scm_tc16_macro; SCM_API SCM scm_makacro (SCM code); -SCM_API SCM scm_makmacro (SCM code); SCM_API SCM scm_makmmacro (SCM code); SCM_API SCM scm_macro_p (SCM obj); SCM_API SCM scm_macro_type (SCM m); @@ -71,6 +70,10 @@ SCM_API SCM scm_make_synt (const char *name, SCM (*fcn) ()); SCM_API void scm_init_macros (void); +#if SCM_ENABLE_DEPRECATED == 1 +SCM_API SCM scm_makmacro (SCM code); +#endif + #endif /* SCM_MACROS_H */ /* |