Re: [O] [BABEL][BUG] lists and inline src

2012-09-19 Thread Bastien
Hi Chuck,

cbe...@tajo.ucsd.edu writes:

 My apologies if this is already reported (I recall seeing something like
 this, but cannot find it in the archives).

 A list element starting with an inline src block is improperly
 parsed. 

I cannot reproduce this with Org 7.9.1.

-- 
 Bastien



Re: [O] [BABEL][BUG] lists and inline src

2012-09-19 Thread cberry
Bastien b...@altern.org writes:

 Hi Chuck,

 cbe...@tajo.ucsd.edu writes:

 My apologies if this is already reported (I recall seeing something like
 this, but cannot find it in the archives).

 A list element starting with an inline src block is improperly
 parsed. 

 I cannot reproduce this with Org 7.9.1.

I just did a git pull, trimmed my .emacs down to 

(setq load-path (cons ~/elisp/org-mode/lisp load-path))
(setq load-path (cons ~/elisp/org-mode/contrib/lisp load-path))

renamed  customizations.el, started Aquamacs, loaded org-e-latex.el and
reran 

(org-export-to-buffer 'e-latex *Test e-LaTeX* nil nil t)

I am still getting the same result.

What else can I do to get to the bottom of this??

Chuck




[O] [BABEL][BUG] lists and inline src

2012-09-18 Thread cberry

My apologies if this is already reported (I recall seeing something like
this, but cannot find it in the archives).

A list element starting with an inline src block is improperly
parsed. for example

- src_emacs-lisp{(org-version)} 

is not executed by babel. An ECM:


,
| * virgin version
| 
| The version is src_emacs-lisp{(org-version)}
| 
| * list versions
| 
| - The version is 
| - src_emacs-lisp{(org-version)}
| - The version is 
| - now src_emacs-lisp{(org-version)}
`
 yields

,
| ...
| \section{virgin version}
| \label{sec-1}
| 
| 
| The version is \verb=7.9.1=
| \section{list versions}
| \label{sec-2}
| 
| 
| \begin{itemize}
| \item The version is
| \item src$_{\mathrm{emacs}}$-lisp\{(org-version)\}
| \item The version is
| \item now \verb=7.9.1=
| \end{itemize}
| ...
`

Chuck