mirror of
https://git.savannah.gnu.org/git/guile.git
synced 2025-06-22 19:44:10 +02:00
* list.c: Moved append docs to append! Thanks Dirk Hermann. Also,
added append docs from R4RS. * strings.c: Docstring typo fix, + eliminate unneeded IMP tests. Thanks Dirk Hermann! * chars.h: Provide SCM_CHARP, SCM_CHAR, SCM_MAKE_CHAR and deprecate SCM_ICHRP, SCM_ICHR, SCM_MAKICHR. Thanks Dirk Hermann! * *.h, *.c: Use SCM_CHARP, SCM_CHAR, SCM_MAKE_CHAR throughout. Drop use of SCM_P for function prototypes... assume an ANSI C compiler. Thanks Dirk Hermann!
This commit is contained in:
parent
e510ed373f
commit
7866a09b5b
79 changed files with 939 additions and 938 deletions
|
@ -52,16 +52,16 @@
|
|||
|
||||
extern long scm_tc16_macro;
|
||||
|
||||
extern SCM scm_makacro SCM_P ((SCM code));
|
||||
extern SCM scm_makmacro SCM_P ((SCM code));
|
||||
extern SCM scm_makmmacro SCM_P ((SCM code));
|
||||
extern SCM scm_macro_p SCM_P ((SCM obj));
|
||||
extern SCM scm_macro_type SCM_P ((SCM m));
|
||||
extern SCM scm_macro_name SCM_P ((SCM m));
|
||||
extern SCM scm_macro_transformer SCM_P ((SCM m));
|
||||
extern SCM scm_make_synt SCM_P ((const char *name,
|
||||
SCM (*macroizer) (SCM),
|
||||
SCM (*fcn) ()));
|
||||
extern void scm_init_macros SCM_P ((void));
|
||||
extern SCM scm_makacro (SCM code);
|
||||
extern SCM scm_makmacro (SCM code);
|
||||
extern SCM scm_makmmacro (SCM code);
|
||||
extern SCM scm_macro_p (SCM obj);
|
||||
extern SCM scm_macro_type (SCM m);
|
||||
extern SCM scm_macro_name (SCM m);
|
||||
extern SCM scm_macro_transformer (SCM m);
|
||||
extern SCM scm_make_synt (const char *name,
|
||||
SCM (*macroizer) (SCM),
|
||||
SCM (*fcn) ());
|
||||
extern void scm_init_macros (void);
|
||||
|
||||
#endif /* MACROSH */
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue