From lekktu@gmail.com Thu Jan 22 16:03:13 2009 Received: (at submit) by emacsbugs.donarmstrong.com; 23 Jan 2009 00:03:13 +0000 X-Spam-Checker-Version: SpamAssassin 3.2.5-bugs.debian.org_2005_01_02 (2008-06-10) on rzlab.ucr.edu X-Spam-Level: X-Spam-Bayes: score:0.5 Bayes not run. spammytokens:Tokens not available. hammytokens:Tokens not available. X-Spam-Status: No, score=-6.0 required=4.0 tests=FVGT_m_MULTI_ODD,HAS_PACKAGE autolearn=ham version=3.2.5-bugs.debian.org_2005_01_02 Received: from mail-ew0-f21.google.com (mail-ew0-f21.google.com [209.85.219.21]) by rzlab.ucr.edu (8.13.8/8.13.8/Debian-3) with ESMTP id n0N0391j017521 for ; Thu, 22 Jan 2009 16:03:11 -0800 Received: by ewy14 with SMTP id 14so3510253ewy.21 for ; Thu, 22 Jan 2009 16:03:04 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:received:in-reply-to:references :date:message-id:subject:from:to:cc:content-type :content-transfer-encoding; bh=1vA/OACaIsBsqGtMcAqkVVSD4X/azXqcrRyQboVx4Jo=; b=W391WaLJi/KQoZkKeCy564BbcCjwE9o7Tyvoc6ZGFvQcpWwbPE27i83a63o5VQRH8d xFNiGoKv3Uo1jc5O0IpVCNumDSqFNdEcrscOCHXL+7kK5C6Nn1bUTevAyyJA7oapY7RN GJQcT2M+32oxgrio74ho/i/v96MEV/YmGwX7g= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :cc:content-type:content-transfer-encoding; b=nL6xhp58cUuhoXpQBfLtTaGWpyWhkiaJ1XUEvxXjf1r+IRUXcbPMw8tLhxvtOseR75 GMkqTedGD9W4gErMdzj9ZzoOUGcCq6pMlVnzcDmo/ClJaecJdgD9jvFH7uYkCiFMXmGo tYCyQHXrPsM8h/4Bp5uqfLuaGZC8HfjazLo2k= MIME-Version: 1.0 Received: by 10.210.34.19 with SMTP id h19mr12310328ebh.132.1232668983987; Thu, 22 Jan 2009 16:03:03 -0800 (PST) In-Reply-To: <877i4mly97.fsf@newsguy.com> References: <877i4mly97.fsf@newsguy.com> Date: Fri, 23 Jan 2009 01:03:03 +0100 Message-ID: Subject: Re: no emacs server variable `server-name' From: Juanma Barranquero To: Harry Putnam Cc: emacs-devel@gnu.org, Emacs Bug Tracker Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit Package: emacs Version: 23.0.60 > Reading parts of the documentation I see: > (info "(emacs)Emacs Server") > You can run multiple Emacs servers on the same machine by giving > each one a unique "server name", using the variable `server-name'. > For example, `M-x set-variable server-name foo ' > sets the server name to `foo'. The `emacsclient' program can > specify a server by name, using the `-s' option (*note emacsclient > Options::). There are several ways to set it (with --daemon=myname, or --eval, or M-: (setq ...)), but you're right: the documentation states that it is settable with set-variable, and it is not. At the very least it should be (defvar server-name "server" "*Name of the server process.") (put 'server-name 'variable-interactive "M") if not a defcustom. Juanma From cyd@stupidchicken.com Thu Jan 22 20:53:55 2009 Received: (at 1995-done) by emacsbugs.donarmstrong.com; 23 Jan 2009 04:53:55 +0000 X-Spam-Checker-Version: SpamAssassin 3.2.5-bugs.debian.org_2005_01_02 (2008-06-10) on rzlab.ucr.edu X-Spam-Level: X-Spam-Bayes: score:0.5 Bayes not run. spammytokens:Tokens not available. hammytokens:Tokens not available. X-Spam-Status: No, score=0.0 required=4.0 tests=none autolearn=ham version=3.2.5-bugs.debian.org_2005_01_02 Received: from cyd.mit.edu (CYD.MIT.EDU [18.115.2.24]) by rzlab.ucr.edu (8.13.8/8.13.8/Debian-3) with ESMTP id n0N4rmAA025172 for <1995-done@emacsbugs.donarmstrong.com>; Thu, 22 Jan 2009 20:53:49 -0800 Received: by cyd.mit.edu (Postfix, from userid 1000) id F12AB57E22A; Thu, 22 Jan 2009 23:54:13 -0500 (EST) From: Chong Yidong To: Juanma Barranquero Cc: Harry Putnam , 1995-done@debbugs.gnu.org Subject: Re: no emacs server variable `server-name' Date: Thu, 22 Jan 2009 23:54:13 -0500 Message-ID: <87ab9ilj0q.fsf@cyd.mit.edu> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii > you're right: the documentation states that it is > settable with set-variable, and it is not. At the very least it should > be > > (defvar server-name "server" > "*Name of the server process.") > (put 'server-name 'variable-interactive "M") > > if not a defcustom. I don't see any problem with making server-name a defcustom, so I went ahead and did that. From lekktu@gmail.com Fri Jan 23 00:20:57 2009 Received: (at 1995-done) by emacsbugs.donarmstrong.com; 23 Jan 2009 08:20:57 +0000 X-Spam-Checker-Version: SpamAssassin 3.2.5-bugs.debian.org_2005_01_02 (2008-06-10) on rzlab.ucr.edu X-Spam-Level: X-Spam-Bayes: score:0.5 Bayes not run. spammytokens:Tokens not available. hammytokens:Tokens not available. X-Spam-Status: No, score=0.0 required=4.0 tests=none autolearn=ham version=3.2.5-bugs.debian.org_2005_01_02 Received: from mail-ew0-f10.google.com (mail-ew0-f10.google.com [209.85.219.10]) by rzlab.ucr.edu (8.13.8/8.13.8/Debian-3) with ESMTP id n0N8Knsa012889 for <1995-done@emacsbugs.donarmstrong.com>; Fri, 23 Jan 2009 00:20:51 -0800 Received: by ewy3 with SMTP id 3so4559284ewy.1 for <1995-done@emacsbugs.donarmstrong.com>; Fri, 23 Jan 2009 00:20:44 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:received:in-reply-to:references :date:message-id:subject:from:to:cc:content-type :content-transfer-encoding; bh=pCOefRT6y+WnM1xmQP2P93N3zUvmB/z//SxyCm3WhnQ=; b=s5adbflK6ujVOsjHMmQ8lH11KGATS2gWH/k/k42pu0QuvZ1aeqCitYtWJAnRlHwPnn ySEGJSj81OONZnR6eiZ841/ZhAje9RFKEgnucyxQITOF/SObijyfquQJNvN9ABosO8vv MEyOU9oi4pkCRfafgIZDUMeSOYSdssWnNWhuI= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :cc:content-type:content-transfer-encoding; b=LXBq1AtUQh9ZWMH7SCTk7Ryg90hJKuJ8zd0Vno1EPdgvC81Y9+1XnubMWCYeCfJWHI mCTUNwPn6FyL4mU64X7TAJHE+AJK5B4xicw6/OBrz38SeyP89joieMY0SVnUFCPVXknb O80JFnt8mzUt08eFAbf3aJg3ptLjEeP6JB5F4= MIME-Version: 1.0 Received: by 10.210.69.6 with SMTP id r6mr1973150eba.83.1232698844258; Fri, 23 Jan 2009 00:20:44 -0800 (PST) In-Reply-To: <87ab9ilj0q.fsf@cyd.mit.edu> References: <87ab9ilj0q.fsf@cyd.mit.edu> Date: Fri, 23 Jan 2009 09:20:44 +0100 Message-ID: Subject: Re: no emacs server variable `server-name' From: Juanma Barranquero To: Chong Yidong Cc: Harry Putnam , 1995-done@debbugs.gnu.org Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit On Fri, Jan 23, 2009 at 05:54, Chong Yidong wrote: > I don't see any problem with making server-name a defcustom I don't see a problem, either. But often these kind of small changes bring the biggest discussions... Juanma From unknown Sun Aug 17 09:10:47 2025 Received: (at fakecontrol) by fakecontrolmessage; To: internal_control@debbugs.gnu.org From: $requester Subject: Internal Control Message-Id: bug archived. Date: Fri, 20 Feb 2009 15:24:05 +0000 User-Agent: Fakemail v42.6.9 # A New Hope # A log time ago, in a galaxy far, far away # something happened. # # Magically this resulted in the following # action being taken, but this fake control # message doesn't tell you why it happened # # The action: # bug archived. thanks # This fakemail brought to you by your local debbugs # administrator From debbugs-submit-bounces@debbugs.gnu.org Fri Jan 22 21:09:21 2010 Received: (at control) by debbugs.gnu.org; 23 Jan 2010 02:09:21 +0000 Received: from localhost ([127.0.0.1] helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.69) (envelope-from ) id 1NYVRA-00085E-Jv for submit@debbugs.gnu.org; Fri, 22 Jan 2010 21:09:20 -0500 Received: from fencepost.gnu.org ([140.186.70.10]) by debbugs.gnu.org with esmtp (Exim 4.69) (envelope-from ) id 1NYVR9-000857-4S for control@debbugs.gnu.org; Fri, 22 Jan 2010 21:09:19 -0500 Received: from rgm by fencepost.gnu.org with local (Exim 4.69) (envelope-from ) id 1NYVR5-0006TQ-JA; Fri, 22 Jan 2010 21:09:15 -0500 MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Message-ID: <19290.23115.517923.652872@fencepost.gnu.org> Date: Fri, 22 Jan 2010 21:09:15 -0500 From: Glenn Morris To: control Subject: control X-Attribution: GM X-Mailer: VM (www.wonderworks.com/vm), GNU Emacs (www.gnu.org/software/emacs) X-Hue: blue X-Ran: 1@L%N=QU&f1<.tX6Q/VU8f0jl\cQk&m/q=QMdSP+o=`F5qhA?$PZe+LT{p^*cu{(u-\[uX X-Debbugs-No-Ack: yes X-Spam-Score: -5.0 (-----) X-Debbugs-Envelope-To: control X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.11 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: debbugs-submit-bounces@debbugs.gnu.org Errors-To: debbugs-submit-bounces@debbugs.gnu.org X-Spam-Score: -5.0 (-----) unarchive 1995 unarchive 1999 notfound 1995 merge 1995 1999 From unknown Sun Aug 17 09:10:47 2025 Received: (at fakecontrol) by fakecontrolmessage; To: internal_control@debbugs.gnu.org From: Debbugs Internal Request Subject: Internal Control Message-Id: bug archived. Date: Sat, 20 Feb 2010 12:24:04 +0000 User-Agent: Fakemail v42.6.9 # A New Hope # A long time ago, in a galaxy far, far away # something happened. # # Magically this resulted in the following # action being taken, but this fake control # message doesn't tell you why it happened # # The action: # bug archived. thanks # This fakemail brought to you by your local debbugs # administrator