From mboxrd@z Thu Jan 1 00:00:00 1970 From: Bernt Hansen Subject: Re: C-c C-c in table takes 12 seconds Date: Sun, 23 Nov 2014 14:04:10 -0500 Message-ID: <87d28d3fit.fsf@norang.ca> References: <2014-11-23T13-27-20@devnull.Karl-Voit.at> <2014-11-23T13-45-08@devnull.Karl-Voit.at> <87y4r13lce.fsf@nicolasgoaziou.fr> <2014-11-23T18-26-43@devnull.Karl-Voit.at> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:33113) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1XscSK-0001Uv-Ri for emacs-orgmode@gnu.org; Sun, 23 Nov 2014 14:04:26 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1XscSD-0001AU-Uo for emacs-orgmode@gnu.org; Sun, 23 Nov 2014 14:04:20 -0500 Received: from mho-02-ewr.mailhop.org ([204.13.248.72]:10676) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1XscSD-0001AH-RJ for emacs-orgmode@gnu.org; Sun, 23 Nov 2014 14:04:13 -0500 In-Reply-To: <2014-11-23T18-26-43@devnull.Karl-Voit.at> (Karl Voit's message of "Sun, 23 Nov 2014 18:28:34 +0100") List-Id: "General discussions about Org-mode." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org Sender: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org To: Karl Voit Cc: emacs-orgmode@gnu.org Karl Voit writes: > * Nicolas Goaziou wrote: >> Hello, > > Hi! > >> Could you provide an ECM? I'm unable to reproduce it. > > Yeah, I can do that. However, because I never did this before and I > suppose this is going to take me at least two hours, I will post it > whenever I got time to do the ECM. > > Is this correct that for an ECM I have to provide a complete > (minimal) init.el and Org-mode files? Hi Karl, In case it is useful here is what I use for ECMs (I haven't done one in well over a year though) This is on my Linux system: Shell script to start emacs with a minimal setup ,----[ minimal-emacs ] | #!/bin/sh | TESTEL= | TESTFILE=/tmp/test.el | if test -e $TESTFILE | then | TESTEL="-l /tmp/test.el" | fi | emacs -q -l ~/minimal.emacs $TESTEL $1 `---- Minimal .emacs file to enable org-mode from git ,----[ minimal.emacs ] | (add-to-list 'load-path "~/git/org-mode/lisp/") | ;(add-to-list 'load-path (expand-file-name "~/git/org-mode/lisp")) | (add-to-list 'auto-mode-alist '("\\.\\(org\\|org_archive\\|txt\\)$" . org-mode)) | (require 'org) | | (global-set-key "\C-cl" 'org-store-link) | (global-set-key "\C-ca" 'org-agenda) | (global-set-key "\C-cb" 'org-iswitchb) `---- I put test settings that show the problem in /tmp/test.el which is automatically included when I run 'minimal-emacs'. Hope that helps. Regards, Bernt