X-Git-Url: https://git.hcoop.net/bpt/guile.git/blobdiff_plain/fbb857a472eb4e69c1cba05e86646b7004f32df6..3f4829e082c2fdd0553a6ce97fe173f8df327e7b:/libguile/eq.h diff --git a/libguile/eq.h b/libguile/eq.h index 1aeb1c496..c09d6670b 100644 --- a/libguile/eq.h +++ b/libguile/eq.h @@ -3,7 +3,7 @@ #ifndef SCM_EQ_H #define SCM_EQ_H -/* Copyright (C) 1995,1996,2000, 2006, 2008 Free Software Foundation, Inc. +/* Copyright (C) 1995,1996,2000, 2006, 2008, 2010 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 @@ -27,6 +27,13 @@ +/* scm_is_eq is defined in tags.h for some reason. */ + +/* An older spelling for scm_is_eq. */ +#define SCM_EQ_P(x,y) (scm_is_eq (x, y)) + + + SCM_API SCM scm_eq_p (SCM x, SCM y); SCM_API SCM scm_eqv_p (SCM x, SCM y); SCM_API SCM scm_equal_p (SCM x, SCM y);