1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-05-28 16:00:22 +02:00

Improve deprecation message of 'scm_add_to_port_table'.

Reported by Thien-Thi Nguyen <ttn@gnu.org>.

* libguile/ports.c (scm_add_to_port_table): Mention
  'scm_new_port_table_entry'.
This commit is contained in:
Ludovic Courtès 2015-01-09 15:47:15 +01:00
parent 47ca15c7df
commit 5d971db802

View file

@ -1,6 +1,6 @@
/* Copyright (C) 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2003, 2004, 2006,
* 2007, 2008, 2009, 2010, 2011, 2012, 2013,
* 2014 Free Software Foundation, Inc.
* 2014, 2015 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
@ -702,7 +702,8 @@ scm_add_to_port_table (SCM port)
SCM z;
scm_t_port * pt;
scm_c_issue_deprecation_warning ("scm_add_to_port_table is deprecated.");
scm_c_issue_deprecation_warning ("'scm_add_to_port_table' is deprecated. "
"Use 'scm_new_port_table_entry' instead.");
scm_i_pthread_mutex_lock (&scm_i_port_table_mutex);
z = scm_new_port_table_entry (scm_tc7_port);