I use emacs on my mac, I install the Cocoa version of emacs using homebrew.
One problem is that in order to see the "Unix path" I had to replicate my path from .profile to .MacOSX/environment.plist
I do it with this in my .profile:
# PATH for emacs and cocoa apps
/etc/profile begin
if [ -x /usr/libexec/path_helper ]; then
eval `/usr/libexec/path_helper -s`
defaults write $HOME/.MacOSX/environment PATH "$PATH"
fi
And that used to work, but it stopped working when I installed Mountain Lion. I can't find any manual that says that they've changed it on this version.
Does anyone know how to see the unix path from cocoa applications on Mountain Lion?