From cc7d394490bb1553e22f5238ce0e5d425ae660fa Mon Sep 17 00:00:00 2001 From: Andy Wingo Date: Fri, 27 Sep 2019 22:28:34 +0200 Subject: Deprecate passing a non-zero size to make-module * module/ice-9/boot-9.scm (make-module): Issue a deprecation warning if users pass a non-zero size. (nested-define-module!, make-modules-in, beautify-user-module!) (resolve-interface, make-autoload-interface, %cond-expand-table): * module/ice-9/popen.scm (port/pid-table): * module/ice-9/session.scm (make-fold-modules): * module/language/ecmascript/function.scm (*program-wrappers*): * module/scripts/api-diff.scm (read-api-alist-file): * module/srfi/srfi-10.scm (reader-ctors): Update callers. Also remove some make-hash-table sizes. --- module/srfi/srfi-10.scm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'module/srfi') diff --git a/module/srfi/srfi-10.scm b/module/srfi/srfi-10.scm index 533d9f769..f63994910 100644 --- a/module/srfi/srfi-10.scm +++ b/module/srfi/srfi-10.scm @@ -54,7 +54,7 @@ ;; This hash table stores the association between comma-hash tags and ;; the corresponding constructor procedures. ;; -(define reader-ctors (make-hash-table 31)) +(define reader-ctors (make-hash-table)) ;; This procedure installs the procedure @var{proc} as the constructor ;; for the comma-hash tag @var{symbol}. -- cgit v1.2.1