Re: [racket-users] Relative Pathname problem

2019-06-23 Thread Sorawee Porncharoenwase
This is almost certainly due to Geiser and not Racket. IIRC, there are C-c C-a and C-c C-b. One of them works with Racket and the other does not. If you only work with Racket, I would recommend racket-mode instead of Geiser. It's far more integrated to Racket. On Sun, J

Re: [racket-users] Relative Pathname problem

2019-06-23 Thread Amir Teymuri
I have version 7.3. The problem was that i have to start the interactive racket from the scratch.rkt file which imports from other modules. I am using racket on Emacs with the Geiser mode. On Sunday, June 23, 2019 at 4:55:20 AM UTC+2, Ben Greenman wrote: > > I tried to reproduce this problem, bu

Re: [racket-users] Relative Pathname problem

2019-06-22 Thread Ben Greenman
I tried to reproduce this problem, but wasn't able to. Which version of Racket are you using? How did you run the program? On 6/20/19, Amir Teymuri wrote: > I have the following situation: > > mylibrary: > >-src > - font.rkt > - gui.rkt >- scratch.rkt > > > So the src/ di

[racket-users] Relative Pathname problem

2019-06-20 Thread Amir Teymuri
I have the following situation: mylibrary: -src - font.rkt - gui.rkt - scratch.rkt So the src/ directory and the scratch.rkt file live in the same directory mylibrary/. According to the documentation of Modules (https://docs.racket-lang.org/guide/module-basics.html): Th