From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Ken Goldman Newsgroups: gmane.emacs.help Subject: Re: emacs as a service Date: Fri, 29 Aug 2008 12:04:40 -0400 Message-ID: <48b96a10@news.greennet.net> References: NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Trace: ger.gmane.org 1220028068 12505 80.91.229.12 (29 Aug 2008 16:41:08 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Fri, 29 Aug 2008 16:41:08 +0000 (UTC) To: help-gnu-emacs@gnu.org Original-X-From: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Fri Aug 29 18:42:02 2008 Return-path: Envelope-to: geh-help-gnu-emacs@m.gmane.org Original-Received: from lists.gnu.org ([199.232.76.165]) by lo.gmane.org with esmtp (Exim 4.50) id 1KZ72r-000365-Ed for geh-help-gnu-emacs@m.gmane.org; Fri, 29 Aug 2008 18:41:57 +0200 Original-Received: from localhost ([127.0.0.1]:37394 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1KZ71s-0001OA-Oo for geh-help-gnu-emacs@m.gmane.org; Fri, 29 Aug 2008 12:40:56 -0400 User-Agent: Thunderbird 2.0.0.16 (Windows/20080708) Original-Newsgroups: gnu.emacs.help In-Reply-To: Original-NNTP-Posting-Host: 192.91.197.52 X-Original-NNTP-Posting-Host: 192.91.197.52 Original-X-Trace: 30 Aug 2008 11:41:04 -0400, 192.91.197.52 Original-Lines: 17 Original-Path: news.stanford.edu!newsfeed.stanford.edu!postnews.google.com!news1.google.com!border1.nntp.dca.giganews.com!border2.nntp.dca.giganews.com!nntp.giganews.com!newspeer1.nac.net!feedme.ziplink.net!news.greennet.net!192.91.197.52 Original-Xref: news.stanford.edu gnu.emacs.help:161764 X-Original-Bytes: 1370 X-BeenThere: help-gnu-emacs@gnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Users list for the GNU Emacs text editor List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Original-Sender: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Errors-To: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.help:57106 Archived-At: Rustom Mody wrote: > I want to start emacs as a service (This is under windows) > The emacs-y side is easy (server-start) > But I want to do it also from the windows perspective. > This involves: > -- starting emacs as a service (using Sc perhaps??) > -- emacs should not (by default) show in a tab on the desktop > -- C-x C-c should close a frame not emacs I can answer this piece: (global-set-key "\C-x\C-c" 'delete-frame) > -- it should be possible for emacs to be running without there being any > frame > > Anyone done something like this?