[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[O] `org-export-define-backend' and its friends are now defuns (was: Bui
From: |
Florian Beck |
Subject: |
[O] `org-export-define-backend' and its friends are now defuns (was: Build fail with emacs 24.3.1) |
Date: |
Wed, 20 Mar 2013 20:03:52 +0100 |
User-agent: |
Gnus/5.13 (Gnus v5.13) Emacs/24.3.50 (gnu/linux) |
Bastien <address@hidden> writes:
> Anyway, `org-export-define-backend' and its friends are
> now defuns, since there is no good reason for them to be macros.
This broke my setup and I had to dig (git log -p) to figure out what to
do (basically quote everything)
Instead of
(org-export-define-derived-backend my-latex latex
:translate-alist ((template . my-latex-template-fun)))
write
(org-export-define-derived-backend 'my-latex 'latex
:translate-alist '((template . my-latex-template-fun)))
[There are now double quotes in the ascii backend, which I guess are not
needed.]
Obvious, when you think about it, but I'm a bit dense when the
byte-compiler tells me that my-latex-template-fun is a malformed function.
A little more prominent warning would have been much appreciated.
--
Florian Beck
- Re: [O] Build fail with emacs 24.3.1, (continued)
- Re: [O] Build fail with emacs 24.3.1, Bastien, 2013/03/13
- Re: [O] Build fail with emacs 24.3.1, Andreas Röhler, 2013/03/13
- Re: [O] Build fail with emacs 24.3.1, Achim Gratz, 2013/03/13
- Re: [O] Build fail with emacs 24.3.1, Bastien, 2013/03/13
- Re: [O] Build fail with emacs 24.3.1, Achim Gratz, 2013/03/14
- Re: [O] Build fail with emacs 24.3.1, Bastien, 2013/03/14
- Re: [O] Build fail with emacs 24.3.1, Bastien, 2013/03/14
- Re: [O] Build fail with emacs 24.3.1, Achim Gratz, 2013/03/14
- Re: [O] Build fail with emacs 24.3.1, Bastien, 2013/03/19
- [O] `org-export-define-backend' and its friends are now defuns (was: Build fail with emacs 24.3.1),
Florian Beck <=
- Re: [O] `org-export-define-backend' and its friends are now defuns, Bastien, 2013/03/20
Re: [O] Build fail with emacs 24.3.1, Susan Cragin, 2013/03/13