From mboxrd@z Thu Jan 1 00:00:00 1970 From: Nick Dokos Subject: Nick Dokos: Re: org-export-generic gives an error Date: Fri, 17 Jul 2009 16:12:42 -0400 Message-ID: <9453.1247861562@alphaville.usa.hp.com> Reply-To: nicholas.dokos@hp.com Return-path: Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1MRtog-00009H-BR for emacs-orgmode@gnu.org; Fri, 17 Jul 2009 16:14:02 -0400 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1MRtob-00008X-Ip for emacs-orgmode@gnu.org; Fri, 17 Jul 2009 16:14:01 -0400 Received: from [199.232.76.173] (port=52700 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1MRtob-00008U-Fh for emacs-orgmode@gnu.org; Fri, 17 Jul 2009 16:13:57 -0400 Received: from g5t0008.atlanta.hp.com ([15.192.0.45]:34836) by monty-python.gnu.org with esmtps (TLS-1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.60) (envelope-from ) id 1MRtob-0006a6-7S for emacs-orgmode@gnu.org; Fri, 17 Jul 2009 16:13:57 -0400 List-Id: "General discussions about Org-mode." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org Errors-To: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org To: emacs-orgmode@gnu.org Noch einmal: I replied to srinivas and forgot to copy the list - sorry. ------- Forwarded Message Date: Wed, 15 Jul 2009 16:18:29 -0400 From: Nick Dokos To: srinivas cc: nicholas.dokos@hp.com Subject: Re: [Orgmode] org-export-generic gives an error srinivas wrote: > I am trying to test org-export-generic. I have an org file which exports > correctly to html but when I tried the org-export-generic, I get the followin g > error: > > === from *Messages* buffer > and: Symbol's function definition is void: characterp > > My commands: C-c C-e g d (for demo) > > I have tried C-c C-e g a (ascii) export but returns the same error. > > Version Info: > GNU Emacs 22.3.1 (i386-mingw-nt5.1.2600) of 2008-09-06 on SOFT-MJASON > Org-mode version 6.28b > > Any tips on what could be causing this error. > characterp does not exist in emacs 22 (at least in 22.1.1 which is what I have) - you can probably add a compatibility function in your .emacs, perhaps something like this: (if (< emacs-major-version 23) (defun characterp (obj) (and (char-or-string-p obj) (not (stringp obj))))) HTH, Nick ------- End of Forwarded Message