From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: "Juanma Barranquero" Newsgroups: gmane.emacs.devel Subject: Re: error in server-running-p on M$ Date: Sun, 23 Nov 2008 05:15:24 +0100 Message-ID: References: <18728.9899.815004.638335@a1ihome1.kph.uni-mainz.de> <18728.14527.648410.433140@a1ihome1.kph.uni-mainz.de> NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit X-Trace: ger.gmane.org 1227413741 14367 80.91.229.12 (23 Nov 2008 04:15:41 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Sun, 23 Nov 2008 04:15:41 +0000 (UTC) Cc: Eli Zaretskii , Ulrich Mueller , emacs-devel@gnu.org To: dhruva Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Sun Nov 23 05:16:43 2008 Return-path: Envelope-to: ged-emacs-devel@m.gmane.org Original-Received: from lists.gnu.org ([199.232.76.165]) by lo.gmane.org with esmtp (Exim 4.50) id 1L46Oo-0008Sc-0A for ged-emacs-devel@m.gmane.org; Sun, 23 Nov 2008 05:16:42 +0100 Original-Received: from localhost ([127.0.0.1]:33112 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1L46Ne-0007Oz-Kv for ged-emacs-devel@m.gmane.org; Sat, 22 Nov 2008 23:15:30 -0500 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1L46Nb-0007Ok-7N for emacs-devel@gnu.org; Sat, 22 Nov 2008 23:15:27 -0500 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1L46Na-0007OY-Qz for emacs-devel@gnu.org; Sat, 22 Nov 2008 23:15:26 -0500 Original-Received: from [199.232.76.173] (port=44235 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1L46Na-0007OV-NV for emacs-devel@gnu.org; Sat, 22 Nov 2008 23:15:26 -0500 Original-Received: from an-out-0708.google.com ([209.85.132.250]:63886) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1L46NZ-0004zv-O6 for emacs-devel@gnu.org; Sat, 22 Nov 2008 23:15:26 -0500 Original-Received: by an-out-0708.google.com with SMTP id c38so680443ana.21 for ; Sat, 22 Nov 2008 20:15:24 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:message-id:date:from:to :subject:cc:in-reply-to:mime-version:content-type :content-transfer-encoding:content-disposition:references; bh=Hi/OPQ00OAfcwhwwh3pbsd9WBCtbvEUznTQYqGSWkWE=; b=KmYsI7YmTrZ+hiCVpwynBJBh1vpuJDoR0MClHL09H+2BOeRRvRBH+RVnym87bENeIe Q+GU4bmJzdULZScILWJavAJuNhkDx5soJROGyJbJmtkOqQIo0NoAdnyGovBey9cq45VI /hYf53/ipraGUa7WJCYaqHRyo/P5j9IODUyPA= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=message-id:date:from:to:subject:cc:in-reply-to:mime-version :content-type:content-transfer-encoding:content-disposition :references; b=Ubi0FmO9Ukv1SdQMYblXNdYY8mcBeV1czTazAnLs/ppxI+7fxuXj+KmJNmf/nVq5cW fNHmRg6Mrz39g5TtU8rV5QVb5jv9c9sJxE9dMV8ZnGCzLc2hs6XHU4HCRQUSfI5aN48k yT5y8fSbrfhk8lGTtNJhlow+yuHrbq7ldvXUI= Original-Received: by 10.101.71.6 with SMTP id y6mr989658ank.44.1227413724811; Sat, 22 Nov 2008 20:15:24 -0800 (PST) Original-Received: by 10.100.13.13 with HTTP; Sat, 22 Nov 2008 20:15:24 -0800 (PST) In-Reply-To: Content-Disposition: inline X-detected-operating-system: by monty-python.gnu.org: GNU/Linux 2.6 (newer, 2) X-BeenThere: emacs-devel@gnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "Emacs development discussions." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Original-Sender: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Errors-To: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.devel:105997 Archived-At: On Sun, Nov 23, 2008 at 05:10, dhruva wrote: > emacsclient needs to use the '-f' option if it wants to use a specific > server. Yes, unless the server is called "server" and the server authentication file is at its default location, ~/.emacs.d/server/ > An automatic fallback would be to use local IP or local > machine IP. That "automatic fallback" is the one above: defaulting to "server". > Does current emacs support running server that can accept > remote connections? server-host is a variable defined in `server.el'. Its value is nil Documentation: The name or IP address to use as host address of the server process. If set, the server accepts remote connections; otherwise it is local. Juanma