summaryrefslogtreecommitdiff
path: root/module/system/base
diff options
context:
space:
mode:
authorLudovic Courtès <ludo@gnu.org>2017-04-14 23:26:10 +0200
committerLudovic Courtès <ludo@gnu.org>2017-04-14 23:26:41 +0200
commitd7778b3d6a5f11ef4744c80e70457193d672aeda (patch)
treee5144324842ecaae3a5480d415b513a23496ec1e /module/system/base
parent685ca33e2e21ee5fd8917d36772f60a85639fd9b (diff)
types: Hide one of the 'bytevector->string' procedures.
* module/system/base/types.scm: Hide 'bytevector->string' from (rnrs io ports).
Diffstat (limited to 'module/system/base')
-rw-r--r--module/system/base/types.scm4
1 files changed, 2 insertions, 2 deletions
diff --git a/module/system/base/types.scm b/module/system/base/types.scm
index 53a3dbe93..49aea27ba 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)