Reputation:
This might be a stupid question but I cannot figure this out for the life of me nor can I find a reference online which answers my question.
I have been using Edwin (this is my first time using Emacs) to follow along with the MIT Opencourseware 6.001 class and I cannot figure out how to load a file.
Upon startup, I type C-x C-f to make a new file "test.scm". I then input some Scheme code and type C-x C-s to save it.
But then if I close Edwin, start it back up,and type C-x C-f test.scm, I just get a blank slate. If instead I type M-x dired, scroll to test.scm and hit RET, I still get a blank slate. The file takes up some space in windows so I don't think the issue is with saving but rather loading (especially since I similarly cannot load the premade .scm files provided by MIT)
I am running MIT/GNU Scheme on Windows 7 if that matters...
Upvotes: 3
Views: 1666
Reputation: 1
I had changed the version of Edwin as the bug report said above,and the bug about Edwin can't open a file is actually disappeared.However,there is a new question,in some times the Ctrl key has not an effect.Therefore, if this bug is not very important to you,the best way is still to use this new version.
Upvotes: 0
Reputation: 2189
a bit late for a timely answer. This is how I do it:
(load "c:\\path_to_your_folder\\your_file.scm")
Upvotes: 1
Reputation: 156
There is an open bug report for this: http://savannah.gnu.org/bugs/?35250.
Upvotes: 3