vote up 2 vote down star
1

I am currently using GNU Emacs 23.0.93.1 in Windows Vista SP1. In my .emacs file I make a call to (server-start) and that is causing an error with the message The directory ~/.emacs.d/server is unsafe. Has anyone seen this and know a fix or workaround? ... other than leaving server turned off ;)

Here is the stack trace:

Debugger entered--Lisp error: (error "The directory ~/.emacs.d/server is unsafe")
  signal(error ("The directory ~/.emacs.d/server is unsafe"))
  error("The directory %s is unsafe" "~/.emacs.d/server")
  server-ensure-safe-dir("~\\.emacs.d\\server\\")
  server-start(nil)
  call-interactively(server-start t nil)
  execute-extended-command(nil)
  call-interactively(execute-extended-command nil nil)
flag

4 Answers

vote up 5 vote down check

This is a known Emacs bug on Windows. A workaround is to comment out this line in server-ensure-safe-dir in server.el the you'll want to byte recompile after the change:

;; FIXME: Busted on Windows. 
;; (eql (nth 2 attrs) (user-uid))
link|flag
Your solution fixes my problem. I will investigate this further later and add my findings here. Thanks! – Jonas Gorauskas May 20 at 8:08
vote up 0 vote down

I got this error on emacs 23.1 on Windows 2000 as well. I tried gavenkoa's solution, and got rid of the error. A parallel emacs 22.1 installation was not affected.

link|flag
vote up 2 vote down

I enjoy to anwer of larsreed, but complite code ready to use:

(require 'server)
(when (and (= emacs-major-version 23) (equal window-system 'w32))
  (defun server-ensure-safe-dir (dir) "Noop" t)) ; Suppress error "directory
                                                 ; ~/.emacs.d/server is unsafe"
                                                 ; on windows.
(server-start)
link|flag
vote up 2 vote down

To avoid hacking in the lisp directory, you can just add the following to your .emacs:

(and (= emacs-major-version 23) (defun server-ensure-safe-dir (dir) "Noop" t))

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.