From d044f345c9524b7b1c0fbec6c92829bd20e58cde Mon Sep 17 00:00:00 2001 From: Kevin Ryde Date: Sat, 24 Apr 2004 22:04:51 +0000 Subject: [PATCH] (scm_tables_prehistory): Remove. --- libguile/chars.h | 3 +-- libguile/init.c | 3 +-- 2 files changed, 2 insertions(+), 4 deletions(-) diff --git a/libguile/chars.h b/libguile/chars.h index 27722260c..3ad8cc4b8 100644 --- a/libguile/chars.h +++ b/libguile/chars.h @@ -3,7 +3,7 @@ #ifndef SCM_CHARS_H #define SCM_CHARS_H -/* Copyright (C) 1995,1996,2000,2001 Free Software Foundation, Inc. +/* Copyright (C) 1995,1996,2000,2001,2004 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 @@ -60,7 +60,6 @@ SCM_API SCM scm_char_to_integer (SCM chr); SCM_API SCM scm_integer_to_char (SCM n); SCM_API SCM scm_char_upcase (SCM chr); SCM_API SCM scm_char_downcase (SCM chr); -SCM_API void scm_tables_prehistory (void); SCM_API int scm_c_upcase (unsigned int c); SCM_API int scm_c_downcase (unsigned int c); SCM_API void scm_init_chars (void); diff --git a/libguile/init.c b/libguile/init.c index 3e96942d1..f808c00cb 100644 --- a/libguile/init.c +++ b/libguile/init.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1995,1996,1997,1998,1999,2000,2001, 2002, 2003 Free Software Foundation, Inc. +/* Copyright (C) 1995,1996,1997,1998,1999,2000,2001, 2002, 2003, 2004 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 @@ -426,7 +426,6 @@ scm_init_guile_1 (SCM_STACKITEM *base) scm_ports_prehistory (); scm_smob_prehistory (); scm_hashtab_prehistory (); /* requires storage_prehistory */ - scm_tables_prehistory (); #ifdef GUILE_DEBUG_MALLOC scm_debug_malloc_prehistory (); #endif