Aquamacs Error Code 139

I get " Process Oz Emulator abnormally displayed with code 139 ", trying to test the program using Mozart / Aquamacs. From a glance at some of the other messages, it looks as if the error "139" is a common error code. Codex is someone pointing me in the right direction, what to look for or do?

I am on a Macbook 10.7.5, I have Xcode installed, I installed Mozart and Aquamacs (this is correct). I tried to run some simple lines of code using the "Feed Region" ex:

{Browse 'Hello World'}

but no luck, just a code error.

Thanks in advance.

I did not know in which section this would be placed (after viewing all the other messages, it looks like a general error, and not a specific “Aquamax”?

+3
source share
1 answer

You get this error because you are using Mozart 2, which is only supported on OS 10.8 / 10.9. For 10.7 use Mozart 1.4.

Now, if you installed Aquamacs3, Mozart will not be able to find Aquamacs. This is because Aquamacs has changed the directory names a bit. To solve this problem, open a terminal and enter the following commands:

ln -s / Applications / Aquamacs.app "/ Applications / Aquamacs Emacs.app" ln -s / Applications / Aquamacs.app / Contents / MacOS / Aquamacs "/Applications/Aquamacs.app/Contents/MacOS/Aquamacs Emacs"

This, of course, assumes that you have added Aquamacs to your applications. If not, change the directories in the above commands accordingly.

Hope this helps.

+1
source

All Articles