civodul pushed a commit to branch master
in repository guile.

commit d7778b3d6a5f11ef4744c80e70457193d672aeda
Author: Ludovic Courtès <l...@gnu.org>
Date:   Fri Apr 14 23:26:10 2017 +0200

    types: Hide one of the 'bytevector->string' procedures.
    
    * module/system/base/types.scm: Hide 'bytevector->string' from (rnrs io
    ports).
---
 module/system/base/types.scm | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/module/system/base/types.scm b/module/system/base/types.scm
index 53a3dbe..49aea27 100644
--- a/module/system/base/types.scm
+++ b/module/system/base/types.scm
@@ -1,5 +1,5 @@
 ;;; 'SCM' type tag decoding.
-;;; Copyright (C) 2014, 2015 Free Software Foundation, Inc.
+;;; Copyright (C) 2014, 2015, 2017 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 as published by
@@ -16,7 +16,7 @@
 
 (define-module (system base types)
   #:use-module (rnrs bytevectors)
-  #:use-module (rnrs io ports)
+  #:use-module ((rnrs io ports) #:hide (bytevector->string))
   #:use-module (srfi srfi-1)
   #:use-module (srfi srfi-9)
   #:use-module (srfi srfi-9 gnu)

Reply via email to