Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a line (server-start) in my .emacs for some reasons. Everything is fine when I launch a first session of Emacs, but when I open anther session, there is a buffer which shows:

Warning (server): Unable to start the Emacs server.
There is an existing Emacs server, named "server".
To start the server in this Emacs process, stop the existing
server or call `M-x server-force-delete' to forcibly disconnect it.

As I quite often open several Emacs, I am wondering if it is possible modify `.emacs' file so as to avoid this message in the beginning.

Could anyone help? Thank you very much!

share|improve this question
3  
the point behind using the server-start is that this way you run emacs only once and as a server. next each time you need emacs, you actually run emacsclient and it connects to the already running emacs server. Also I dont think its a good practice to have anything in your config files, unless you know what its there for. – Sujoy Jun 18 '11 at 17:49

1 Answer

up vote 12 down vote accepted

Try:

(require 'server)
(or (server-running-p)
    (server-start))

Note that server-running-p does not appear in the manual, so conceivably this could break with future versions of Emacs.

share|improve this answer
Thank you very much, that works – SoftTimur Jun 18 '11 at 17:12

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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