Current bug causes the following:
https://debbugs.gnu.org/cgi/bugreport.cgi?bug=28806
see ox-odt.el file:
...
(cond
((eq fn 'default)
(format org-odt-src-block-paragraph-format
background-color-val color-val))
(t
(format
"
" style-name color-val))))))
...
On Wed, Jun 6, 2018, 14:19 Basil L. Contovounesios wrote:
> Héctor Enríquez Ramón writes:
>
> > The code below shows opposite behavior byte-compiled:
> >
> > (setq variable 0)
> > (cond
> > ((eq variable 'default)
> > (message "equal"))
> > (t
> > (message "not equal")))
> >
> > Not byte-compiled output: not equal
> > Byte-compiled output: equal
>
> This is the same as bug#31718, right?
> https://debbugs.gnu.org/cgi/bugreport.cgi?bug=31718
>
> --
> Basil
>