At Thu, 3 Jun 2021 20:26:59 -0700 (PDT), Don Green wrote: > Using DrRacket in linux: > When I run DrRacket from a terminal, > > (current-library-collection-paths) returns the expected paths, 3 of them. > > However, when I open one of my .ss files which is associated with drracket, > > the file opens in drracket but (current-library-collection-paths) returns > only 2 of the 3 desired collection paths.
I think we're missing some context: Why do you expect 3 paths from `(current-library-collection-paths)`? A normal configuration would have just 2 paths, but it's possible to have more due to command-line flags, environment variables, or configuration in "config.rktd". Do you expect 3 because you have an environment variable set, or something like that? > Should I use info.rkt to specify the 3 desired collection paths? An "info.rkt" file will not change the collection-paths parameter. Normally, instead of adding new collection paths, new collections are added through packages. Those packages are found through the `current-library-collection-links` parameter, which points to files that contain more paths. Matthew -- You received this message because you are subscribed to the Google Groups "Racket Users" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To view this discussion on the web visit https://groups.google.com/d/msgid/racket-users/20210604072114.df%40sirmail.smtps.cs.utah.edu.

