From 89a43312e9ac2a5ebe9d66c2024607b7de29dde6 Mon Sep 17 00:00:00 2001 From: Matthew Flatt Date: Mon, 6 Aug 2007 02:29:58 +0000 Subject: [PATCH] fix missing parens svn: r7027 --- collects/srfi/29/localization.ss | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/collects/srfi/29/localization.ss b/collects/srfi/29/localization.ss index b9cc2e63d4..aee26695d6 100644 --- a/collects/srfi/29/localization.ss +++ b/collects/srfi/29/localization.ss @@ -105,7 +105,7 @@ (lambda () ;; ... but disable `#reader': (parameterize ([read-accept-reader #f]) - thunk)))) + (thunk))))) ;; bundle-specifier: (listof symbol) ;; i.e. package + locale, (package-name [language] [country] [details ...])