11/27/2007
Aquamacs File System Coding
At work I'm always downloading strange file formats, or creating files with weird names to test our system. Doing this, I noticed that aquamacs was having trouble with some of them and I couldn't figure out why. Until today! Previously, one of my test files was pretty messed up via dired and eshell, take a look:
![]() |
| Bad! |
But all it takes is a quick addition to your .emacs file and it's fixed! You just need to specify the "file name system coding," and there is even one included with aquamacs that is designed for the mac file system. Just add the following line to your .emacs file and you're all set:
(set-file-name-coding-system 'utf-8m)
After that, everything is rosy.
![]() |
| Good! |

