From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: suvayu ali Newsgroups: gmane.emacs.help Subject: Re: temacs Date: Wed, 27 Jun 2012 16:44:18 +0200 Message-ID: References: <87bokbb4zw.fsf@gnu.org> <83086e1d-d66a-4e0c-95a7-92d10a6de7e7@f8g2000pbf.googlegroups.com> <87r4t3krun.fsf@friendface.i-did-not-set--mail-host-address--so-tickle-me> <811ul1ds60.fsf_-_@gmail.com> NNTP-Posting-Host: plane.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable X-Trace: dough.gmane.org 1340808296 16387 80.91.229.3 (27 Jun 2012 14:44:56 GMT) X-Complaints-To: usenet@dough.gmane.org NNTP-Posting-Date: Wed, 27 Jun 2012 14:44:56 +0000 (UTC) Cc: help-gnu-emacs@gnu.org To: Jambunathan K Original-X-From: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Wed Jun 27 16:44:56 2012 Return-path: Envelope-to: geh-help-gnu-emacs@m.gmane.org Original-Received: from lists.gnu.org ([208.118.235.17]) by plane.gmane.org with esmtp (Exim 4.69) (envelope-from ) id 1SjtUF-0001jL-Ji for geh-help-gnu-emacs@m.gmane.org; Wed, 27 Jun 2012 16:44:55 +0200 Original-Received: from localhost ([::1]:42998 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1SjtUF-0006hj-A3 for geh-help-gnu-emacs@m.gmane.org; Wed, 27 Jun 2012 10:44:55 -0400 Original-Received: from eggs.gnu.org ([208.118.235.92]:48742) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1SjtU7-0006hV-Da for help-gnu-emacs@gnu.org; Wed, 27 Jun 2012 10:44:51 -0400 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1SjtU1-0007Hi-5x for help-gnu-emacs@gnu.org; Wed, 27 Jun 2012 10:44:46 -0400 Original-Received: from mail-qc0-f177.google.com ([209.85.216.177]:44255) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1SjtU0-0007Gp-VQ for help-gnu-emacs@gnu.org; Wed, 27 Jun 2012 10:44:41 -0400 Original-Received: by qcsu28 with SMTP id u28so581421qcs.36 for ; Wed, 27 Jun 2012 07:44:39 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:sender:in-reply-to:references:from:date :x-google-sender-auth:message-id:subject:to:cc:content-type :content-transfer-encoding; bh=KmDz/Gtp2yAxbbgRRFaoCai55ZTnvEp3XXYk2kPFXYg=; b=BWNZVSRXNjWetAsWybbiIqsWB+mlf1fika9puMVU9XpqwzLfvv94jh9DpnaNwjerp5 +g0FLXm1M2yewtGb1ZUeUVYfIx+PbSvszjec2YYN2vzIhmMddc1DTVLqgsTOXt6hq/sk UJk3ZkHtXbvngRNC/VyozN7rB1L7rMr+73CuS692iKgMcknSmAIXGblPWpepDIteNDtu 5hZaK5lHejx6uplk0nAk5bar/UKMmX4+aYPuwAN4FYrS8rYBYeaYpfiv/oabeUUFjArM h3W8KvTwFTgriYWJBlOOaradZhT7VRcqhc/kU+MGnzic0FAm7h36LSQAlJxdN+iVbBIM ns/Q== Original-Received: by 10.60.154.232 with SMTP id vr8mr3413488oeb.30.1340808278788; Wed, 27 Jun 2012 07:44:38 -0700 (PDT) Original-Received: by 10.60.24.33 with HTTP; Wed, 27 Jun 2012 07:44:18 -0700 (PDT) In-Reply-To: <811ul1ds60.fsf_-_@gmail.com> X-Google-Sender-Auth: IFnekInTcpikkcJT16uJghYOM14 X-detected-operating-system: by eggs.gnu.org: Genre and OS details not recognized. X-Received-From: 209.85.216.177 X-BeenThere: help-gnu-emacs@gnu.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Users list for the GNU Emacs text editor List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Original-Sender: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.help:85515 Archived-At: Hi Jambunathan, On Wed, Jun 27, 2012 at 11:23 AM, Jambunathan K wr= ote: > For git commits, rebases etc I use jemacs as EDITOR. =C2=A0Can I use tema= cs > for such simple editing jobs? I just tried it, compared with emacs -Q it is quite a bit slow. $ time /path/to/temacs -Q -f kill-emacs real 0m4.106s user 0m3.825s sys 0m0.090s $ time emacs -f kill-emacs real 0m5.056s user 0m2.894s sys 0m0.182s $ time emacs -q -f kill-emacs real 0m1.508s user 0m0.453s sys 0m0.078s $ time emacs -Q -f kill-emacs real 0m0.990s user 0m0.242s sys 0m0.045s This is what I use for git commits: $ git config --get core.editor emacs -nw -Q -l ~/.emacs.d/minimal-commit.el $ time emacs -nw -Q -l ~/.emacs.d/minimal-commit.el -f kill-emacs real 0m0.665s user 0m0.270s sys 0m0.021s You can find minimal-commit.el here: HTH --=20 Suvayu Open source is the future. It sets us free.