diff options
author | Ludovic Courtès <ludo@gnu.org> | 2012-05-06 22:24:47 +0200 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2012-05-06 22:24:47 +0200 |
commit | 5bbd632fc36b14f59d51e4ba2d8e189fd3cc0f76 (patch) | |
tree | 72cef912bc3a247de6837f30e3e941424e2254f4 /libguile/ports.h | |
parent | 7be3c2fcbfe2335d069a5c13b0ddf74b69383c46 (diff) | |
download | guile-5bbd632fc36b14f59d51e4ba2d8e189fd3cc0f76.tar.gz |
Make `scm_unget_byte' public.
* libguile/ports.h (scm_unget_byte): Make `SCM_API' instead of
`SCM_INTERNAL'.
Diffstat (limited to 'libguile/ports.h')
-rw-r--r-- | libguile/ports.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libguile/ports.h b/libguile/ports.h index fcf1424cc..bd80c39a2 100644 --- a/libguile/ports.h +++ b/libguile/ports.h @@ -4,7 +4,7 @@ #define SCM_PORTS_H /* Copyright (C) 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2003, 2004, - * 2006, 2008, 2009, 2010, 2011 Free Software Foundation, Inc. + * 2006, 2008, 2009, 2010, 2011, 2012 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 @@ -288,7 +288,7 @@ SCM_INTERNAL void scm_lfwrite_substr (SCM str, size_t start, size_t end, SCM_API void scm_flush (SCM port); SCM_API void scm_end_input (SCM port); SCM_API int scm_fill_input (SCM port); -SCM_INTERNAL void scm_unget_byte (int c, SCM port); +SCM_API void scm_unget_byte (int c, SCM port); SCM_API void scm_ungetc (scm_t_wchar c, SCM port); SCM_API void scm_ungets (const char *s, int n, SCM port); SCM_API SCM scm_peek_char (SCM port); |