mirror of
https://git.savannah.gnu.org/git/guile.git
synced 2025-05-01 12:20:26 +02:00
* list.h (SCM_LISTn): New macros. Make list creation in C code
prettier. The idea comes from STk. * sequences.h, sequences.c, append.h, append.c: Removed. These files implemented non-R4RS operations which would encourage non-portable programming style and less easy-to-read code. * Makefile.am (sequences.h, sequences.c, append.h, append.c): Removed. * libguile.h, eval.c, init.c, stime.c, unif.c: Removed #include sequences.h, #include append.h. * gh.h, gh_list.c: Renamed gh_list_length --> gh_length. * list.h, list.c: Renamed scm_list_length --> scm_length, scm
This commit is contained in:
parent
e69807f074
commit
92396c0aa1
9 changed files with 84 additions and 32 deletions
|
@ -634,7 +634,7 @@ scm_compile_shell_switches (int argc, char **argv)
|
|||
}
|
||||
|
||||
{
|
||||
SCM val = scm_cons (sym_begin, scm_list_reverse_x (tail, SCM_UNDEFINED));
|
||||
SCM val = scm_cons (sym_begin, scm_reverse_x (tail, SCM_UNDEFINED));
|
||||
|
||||
#if 0
|
||||
scm_write (val, SCM_UNDEFINED);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue