From mboxrd@z Thu Jan 1 00:00:00 1970 From: Nick Dokos Subject: Re: orgtbl export to latex :fmt() fails Date: Fri, 18 Jul 2014 09:22:24 -0400 Message-ID: <87lhrqrecv.fsf@gmail.com> References: <20140717214645.78f5b484@rudi> <87oawn4rmm.fsf@alphaville.bos.redhat.com> <20140717235437.317c67c1@rudi> <87fvhz4nr6.fsf@alphaville.bos.redhat.com> <20140718114632.38bc8170@rudi> Mime-Version: 1.0 Content-Type: text/plain Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:54508) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1X887e-0000MH-4u for emacs-orgmode@gnu.org; Fri, 18 Jul 2014 09:22:57 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1X887V-0004xW-Cl for emacs-orgmode@gnu.org; Fri, 18 Jul 2014 09:22:50 -0400 Received: from plane.gmane.org ([80.91.229.3]:48811) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1X887V-0004xD-63 for emacs-orgmode@gnu.org; Fri, 18 Jul 2014 09:22:41 -0400 Received: from list by plane.gmane.org with local (Exim 4.69) (envelope-from ) id 1X887R-0003sG-NU for emacs-orgmode@gnu.org; Fri, 18 Jul 2014 15:22:37 +0200 Received: from pool-98-110-160-12.bstnma.fios.verizon.net ([98.110.160.12]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Fri, 18 Jul 2014 15:22:37 +0200 Received: from ndokos by pool-98-110-160-12.bstnma.fios.verizon.net with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Fri, 18 Jul 2014 15:22:37 +0200 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: emacs-orgmode@gnu.org Thorsten Grothe writes: > Nick, > > thanks for your patience :-) > >> It depends on how exactly you installed: from git, from elpa, from a >> tarball, using the org mode that came with your emacs, some other way? >> (...) > > I installed orgmode now from elpa (org-plus-contrib) in my local > homedir. So is there another way to apply your patch or do I have to > copy and paste the codelines? > Save the message that contains the patch into a file, say /tmp/org-table-clean-before-export.patch, change directory to wherever elpa installed org (the top-level directory: you should be able to see lisp/, contrib/, etc. when you do an `ls') and then from the shell say $ patch -p1 < /tmp/org-table-clean-before-export.patch I got the following output when I did that against maint - you might get slightly different output: ,---- | patching file lisp/org-table.el | Hunk #1 succeeded at 440 (offset -7 lines). `---- Note btw, that `patch' saves the original file under org-table.el.orig, so if things go wrong at any point, you can go back by copying it over the modified file. If that succeeds, you'll want to do a `make install' or whatever other make target you used to install it in the first place: `make help' describes all the options. -- Nick