Reputation: 3584
I'm using emacs on a Linux box where I have no home directory. When using emacs I will sometimes get the warning:
Creating directory: permission denied, /home/username
I don't know what it is trying to access in the home directory. I've set make-backup-files to nil.
My question is:
Upvotes: 2
Views: 3249
Reputation: 5301
You can run M-x toggle-debug-on-error
and then you should get a backtrace the next time the error occurs (if it's an error).
Upvotes: 1
Reputation: 3584
Oops, didn't think of the very low-tech solution:
$ HOME=/tmp emacs
Upvotes: 3
Reputation: 12566
Are you editing a file in your home directory? Maybe it's trying to create the auto backup copy?
Upvotes: 0