1

Today I tried to export an org table by issuing M-x org-table-export <RET> table.csv <RET> <RET>. To my surprise, I received the error message

Symbol's function definition is void: org-export-create-backend

I believe this is happening because of my recent upgrade to org-mode version 8.3.1 from version 7. Any ideas what is going wrong?

Brian Fitzpatrick
  • 2,265
  • 1
  • 17
  • 40

1 Answers1

1

Elsewhere, you'd mentioned you tried installing both the git and ELPA versions of Org.

So that's most likely the problem. You might want to clean up and reinstall Org:

Cleanup

1. Remove the git version of org

You can use make clean-install to remove an org installation from git. If you customized your install location, make sure to use the same settings.

2. Remove the ELPA version of Org.

In list-packages, move point over the Org package, press d to mark it for deletion, then press x to execute the deletion.

Reinstall Org

Pick your favorite way of installing Org, and do that. Either the git version or ELPA version is fine, but the git version is more bleeding-edge. You shouldn't need incredibly new Org for most things, but it will have slightly more features and bugfixes.

zck
  • 8,984
  • 2
  • 31
  • 65
  • After completing (1) and (2), issuing `M-x org-version` returns `Org-mode version 7.9.3f`. This version exports tables fine. Reinstalling org through ELPA then upgrades me to version 8.3.1 and the problem arises again. In fact, this version seems to effect a few other things, like table functions and table importing. Could this be a problem with 8.3.1 itself? – Brian Fitzpatrick Sep 22 '15 at 06:32
  • And thanks for taking the time to look this! – Brian Fitzpatrick Sep 22 '15 at 06:32
  • After a lot of googling, I found this http://stackoverflow.com/questions/22988092/emacs-org-mode-export-markdown/22990257 which ended up working! – Brian Fitzpatrick Sep 22 '15 at 07:02
  • What exactly did work for you? – Christian Feb 04 '16 at 09:49