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 <nicholas.do...@hp.com>
To:      srinivas <sp...@yahoo.com>
cc:      nicholas.do...@hp.com
Subject: Re: [Orgmode] org-export-generic gives an error 

srinivas <sp...@yahoo.com> 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



_______________________________________________
Emacs-orgmode mailing list
Remember: use `Reply All' to send replies to the list.
Emacs-orgmode@gnu.org
http://lists.gnu.org/mailman/listinfo/emacs-orgmode

Reply via email to