diff options
Diffstat (limited to 'libguile/pairs.c')
-rw-r--r-- | libguile/pairs.c | 31 |
1 files changed, 4 insertions, 27 deletions
diff --git a/libguile/pairs.c b/libguile/pairs.c index 7d7e68c4f..764458e36 100644 --- a/libguile/pairs.c +++ b/libguile/pairs.c @@ -1,5 +1,5 @@ /* Copyright (C) 1995,1996,2000,2001, 2004, 2005, 2006, 2008, 2009, - * 2011, 2013 Free Software Foundation, Inc. + * 2011, 2012, 2013 Free Software Foundation, Inc. * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public License @@ -68,18 +68,6 @@ void scm_error_pair_access (SCM non_pair) #endif -SCM_DEFINE (scm_cons, "cons", 2, 0, 0, - (SCM x, SCM y), - "Return a newly allocated pair whose car is @var{x} and whose\n" - "cdr is @var{y}. The pair is guaranteed to be different (in the\n" - "sense of @code{eq?}) from every previously existing object.") -#define FUNC_NAME s_scm_cons -{ - return scm_cell (SCM_UNPACK (x), SCM_UNPACK (y)); -} -#undef FUNC_NAME - - SCM scm_cons2 (SCM w, SCM x, SCM y) { @@ -144,20 +132,6 @@ SCM_DEFINE (scm_set_cdr_x, "set-cdr!", 2, 0, 0, return tree -SCM_DEFINE (scm_cdr, "cdr", 1, 0, 0, (SCM x), "") -#define FUNC_NAME s_scm_cdr -{ - CHASE_PAIRS (x, "cdr", 0x02); /* 00000010 */ -} -#undef FUNC_NAME - -SCM_DEFINE (scm_car, "car", 1, 0, 0, (SCM x), "") -#define FUNC_NAME s_scm_car -{ - CHASE_PAIRS (x, "car", 0x03); /* 00000011 */ -} -#undef FUNC_NAME - SCM_DEFINE (scm_cddr, "cddr", 1, 0, 0, (SCM x), "") #define FUNC_NAME s_scm_cddr { @@ -361,6 +335,9 @@ void scm_init_pairs () { #include "libguile/pairs.x" + scm_c_define_gsubr ("cons", 2, 0, 0, scm_cons); + scm_c_define_gsubr ("car", 1, 0, 0, scm_car); + scm_c_define_gsubr ("cdr", 1, 0, 0, scm_cdr); } |