From mboxrd@z Thu Jan 1 00:00:00 1970 From: Nick Dokos Subject: Re: Error with Org Export Date: Fri, 06 Mar 2015 14:19:43 -0500 Message-ID: <87wq2u9bn4.fsf@alphaville.usersys.redhat.com> References: Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:33159) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1YTxn5-0000xh-Kp for emacs-orgmode@gnu.org; Fri, 06 Mar 2015 14:20:08 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1YTxn2-00023u-Dm for emacs-orgmode@gnu.org; Fri, 06 Mar 2015 14:20:07 -0500 Received: from plane.gmane.org ([80.91.229.3]:54092) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1YTxn2-00022y-7m for emacs-orgmode@gnu.org; Fri, 06 Mar 2015 14:20:04 -0500 Received: from list by plane.gmane.org with local (Exim 4.69) (envelope-from ) id 1YTxn0-00031g-Nn for emacs-orgmode@gnu.org; Fri, 06 Mar 2015 20:20:03 +0100 Received: from pool-173-76-32-186.bstnma.fios.verizon.net ([173.76.32.186]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Fri, 06 Mar 2015 20:20:02 +0100 Received: from ndokos by pool-173-76-32-186.bstnma.fios.verizon.net with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Fri, 06 Mar 2015 20:20:02 +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: emacs-orgmode@gnu.org Chris Drane writes: > I'm trying to export to HTML a file with this snippet of text: > > << > call_function 0; store 1 (a) >>> > > Doing so gives me the error: Variable "store" must be assigned a default value > > This goes away if I remove the underscore. I've tried using #+OPTIONS: ^:{} to address this, but it doesn't have any effect, nor does #+OPTIONS: ^:nil > > Org is version 8.2.10. Emacs is 25.0.50.1. > > What seems to be the matter here and how can I fix it? I guess it thinks it's an inline babel call. If it's just text, you can use an entity: call\under{}function 0; store 1 (a) Nick