But when I start Emacs I get an error saying there is a problem with that line in ~/.emacs, so I started Emacs with the command "emacs --debug-init" and got the following message, can someone help me troubleshoot this? Thanks!
> But when I start Emacs I get an error saying there is a problem with that
> line in ~/.emacs, so I started Emacs with the command "emacs --debug-init"
> and got the following message, can someone help me troubleshoot this?
>> But when I start Emacs I get an error saying there is a problem with that
>> line in ~/.emacs, so I started Emacs with the command "emacs --debug-init"
>> and got the following message, can someone help me troubleshoot this?
Advrk Aplmrkt <avkapl...@gmail.com> writes:
> I tried using (require 'org-export-generic), but emacs produces the
> same error when starting..... Any other possibilities? Thanks for your
> patience!
Did you (require 'org) first?
Basically the error says ̀defmacro*' doesn't exist.
̀defmacro*' is defined in cl-macs.el, so this file should be loaded
before you can load org-export-generic.el.
>> I tried using (require 'org-export-generic), but emacs produces the
>> same error when starting..... Any other possibilities? Thanks for your
>> patience!
> Did you (require 'org) first?
> Basically the error says ̀defmacro*' doesn't exist.
> ̀defmacro*' is defined in cl-macs.el, so this file should be loaded
> before you can load org-export-generic.el.
Advrk Aplmrkt <avkapl...@gmail.com> writes:
> Thank you so much for helping me with this, now I can successfully
> export org-mode files to Markdown. BTW, this is where I got it from:
Note that from a fresh Org clone, you can use a more recent Markdown
exporter -- one that is likely to end up in Org's core, so testing it
would be nice.
> Note that from a fresh Org clone, you can use a more recent Markdown
> exporter -- one that is likely to end up in Org's core, so testing it
> would be nice.
Advrk Aplmrkt <avkapl...@gmail.com> writes:
> While neither were perfect, the new one you suggested does work a bit
> better! Thanks again. Hopefully this thread will be useful to someone
> some day.
Don't hesitate to give some feedback by writing directly to the
emacs-orgm...@gnu.org mailing list.
If the above is all you do to load org-mode, I think you are still not
using your separate org-mode install. In fact, your setup now has a
mixed org installation. You can verify this by looking at the output of
org-version.
I would suggest you follow the installation method suggested in the info
manual[1]. A mixed installation like this will cause you troubles that
will make your head spin in the future.