diff options
author | Ludovic Courtès <ludo@gnu.org> | 2013-01-28 21:54:21 +0100 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2013-01-28 22:28:42 +0100 |
commit | aac01de63dfb44a442df8ae6920ee431ba81780e (patch) | |
tree | 69de4c0fa01601eb426973a4fd1c225120ad19bd /libguile/memoize.c | |
parent | 90baf8cdfe8ce356ee4720a012e0deb5a2cb5818 (diff) | |
download | guile-aac01de63dfb44a442df8ae6920ee431ba81780e.tar.gz |
Remove unneeded SMOB mark procedure in `memoize.c'.
* libguile/memoize.c (scm_init_memoize): Remove unnecessary call to
`scm_set_smob_mark'.
Diffstat (limited to 'libguile/memoize.c')
-rw-r--r-- | libguile/memoize.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/libguile/memoize.c b/libguile/memoize.c index 0f4837a92..584096fbd 100644 --- a/libguile/memoize.c +++ b/libguile/memoize.c @@ -1,5 +1,5 @@ /* Copyright (C) 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, - * 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011, 2012 + * 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011, 2012, 2013 * Free Software Foundation, Inc. * * This library is free software; you can redistribute it and/or @@ -883,7 +883,6 @@ void scm_init_memoize () { scm_tc16_memoized = scm_make_smob_type ("%memoized", 0); - scm_set_smob_mark (scm_tc16_memoized, scm_markcdr); scm_set_smob_print (scm_tc16_memoized, scm_print_memoized); scm_tc16_memoizer = scm_make_smob_type ("memoizer", 0); |