From 668e2ffbe25f613c8a5d3d95bf9a72478a82cf5c Mon Sep 17 00:00:00 2001 From: Robby Findler Date: Sat, 19 Mar 2016 11:00:55 -0500 Subject: [PATCH] fix error message --- racket/collects/pkg/path.rkt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/racket/collects/pkg/path.rkt b/racket/collects/pkg/path.rkt index b065a0b295..48b334f3ba 100644 --- a/racket/collects/pkg/path.rkt +++ b/racket/collects/pkg/path.rkt @@ -191,5 +191,5 @@ (define (path->pkg given-p #:cache [cache #f]) (define-values (pkg subpath collect scope) - (path->pkg+subpath+collect* path->pkg given-p cache #f)) + (path->pkg+subpath+collect* 'path->pkg given-p cache #f)) pkg)