emacs-orgmode@gnu.org archives
 help / color / mirror / code / Atom feed
* bug org-list-send-list
@ 2016-05-21 19:40 Charles Millar
  2016-05-22 23:17 ` Nicolas Goaziou
  0 siblings, 1 reply; 3+ messages in thread
From: Charles Millar @ 2016-05-21 19:40 UTC (permalink / raw)
  To: emacs-orgmode

Using the following on LMDE 2

GNU Emacs 24.4.1 (x86_64-pc-linux-gnu, GTK+ Version 3.14.5) of 
2015-03-07 on trouble, modified by Debian
Org-mode version 8.3.4 (release_8.3.4-833-g2ed5e6 @ 
/usr/local/share/emacs/site-lisp/org-mode/lisp/)

I have (require 'ox-latex) in my .emacs.d/init.el

The following radio table is in LaTeX major mode and orgstruct minotr 
mode per the manual.

% BEGIN RECEIVE ORGLST radioTableTest
% END RECEIVE ORGLST radioTableTest
\begin{comment}
#+ORGLST: SEND radioTableTest org-list-to-latex
- Something to send
\end{comment}

With cursor on the "S" in Something calling (or "-")

M-x org-list-send-list

does not convert LATEX list between the two marker lines. Instead the 
following message is in the mini-buffer

No such transformation function org-list-to-latex and the degug-on-entry is

Debugger entered--entering a function:
* org-list-send-list()
   call-interactively(org-list-send-list record nil)
   command-execute(org-list-send-list record)
   execute-extended-command(nil "org-list-send-list")
   call-interactively(execute-extended-command nil nil)
   command-execute(execute-extended-command)

If I C-c C-c on the "S" (or the "-")

the minibuffer calls Command [pdflatex]:

if I just hit enter the following is in the tex-shell

charlie01@theoffice /mnt/Data/ActiveFiles $ pdflatex 
\\nonstopmode\\input RadiotablesTest.tex
This is pdfTeX, Version 3.14159265-2.6-1.40.15 (TeX Live 
2015/dev/Debian) (preloaded format=pdflatex)
  restricted \write18 enabled.
entering extended mode
LaTeX2e <2014/05/01>
Babel <3.9l> and hyphenation patterns for 79 languages loaded.

(./RadiotablesTest.tex

! LaTeX Error: Environment comment undefined.

See the LaTeX manual or LaTeX Companion for explanation.
Type  H <return>  for immediate help.
  ...

l.3 \begin{comment}

! You can't use `macro parameter character #' in vertical mode.
l.4 #
      +ORGLST: SEND radioTableTest org-list-to-latex

! LaTeX Error: Missing \begin{document}.

See the LaTeX manual or LaTeX Companion for explanation.
Type  H <return>  for immediate help.
  ...

l.4 #+
       ORGLST: SEND radioTableTest org-list-to-latex

! LaTeX Error: \begin{document} ended by \end{comment}.

See the LaTeX manual or LaTeX Companion for explanation.
Type  H <return>  for immediate help.
  ...

l.6 \end{comment}

)
! Emergency stop.
<*> \nonstopmode\input RadiotablesTest.tex

!  ==> Fatal error occurred, no output PDF file produced!
Transcript written on RadiotablesTest.log.
charlie01@theoffice /mnt/Data/ActiveFiles $

Is this a bug? Is my setup incorrect? Or what am I missing.

Charlie Millar

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: bug org-list-send-list
  2016-05-21 19:40 bug org-list-send-list Charles Millar
@ 2016-05-22 23:17 ` Nicolas Goaziou
  2016-05-23  0:31   ` Charles Millar
  0 siblings, 1 reply; 3+ messages in thread
From: Nicolas Goaziou @ 2016-05-22 23:17 UTC (permalink / raw)
  To: Charles Millar; +Cc: emacs-orgmode

Hello,

Charles Millar <millarc@verizon.net> writes:

> The following radio table is in LaTeX major mode and orgstruct minotr 
> mode per the manual.
>
> % BEGIN RECEIVE ORGLST radioTableTest
> % END RECEIVE ORGLST radioTableTest
> \begin{comment}
> #+ORGLST: SEND radioTableTest org-list-to-latex
> - Something to send
> \end{comment}
>
> With cursor on the "S" in Something calling (or "-")
>
> M-x org-list-send-list
>
> does not convert LATEX list between the two marker lines. Instead the 
> following message is in the mini-buffer
>
> No such transformation function org-list-to-latex and the
> degug-on-entry is

Fixed. Thank you.

Regards,

-- 
Nicolas Goaziou

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: bug org-list-send-list
  2016-05-22 23:17 ` Nicolas Goaziou
@ 2016-05-23  0:31   ` Charles Millar
  0 siblings, 0 replies; 3+ messages in thread
From: Charles Millar @ 2016-05-23  0:31 UTC (permalink / raw)
  To: emacs-orgmode

Hi Nick,

On 05/22/2016 07:17 PM, Nicolas Goaziou wrote:
> Hello,
>
> Charles Millar <millarc@verizon.net> writes:
>
>> The following radio table is in LaTeX major mode and orgstruct minotr
>> mode per the manual.
>>
>> % BEGIN RECEIVE ORGLST radioTableTest
>> % END RECEIVE ORGLST radioTableTest
>> \begin{comment}
>> #+ORGLST: SEND radioTableTest org-list-to-latex
>> - Something to send
>> \end{comment}
>>
>> With cursor on the "S" in Something calling (or "-")
>>
>> M-x org-list-send-list
>>
>> does not convert LATEX list between the two marker lines. Instead the
>> following message is in the mini-buffer
>>
>> No such transformation function org-list-to-latex and the
>> degug-on-entry is
> Fixed. Thank you.
>
The org-list-send-list works fine, however C-c C-c on the first item is 
still a problem just as reported earlier.

GNU Emacs 24.4.1 (x86_64-pc-linux-gnu, GTK+ Version 3.14.5) of 
2015-03-07 on trouble, modified by Debian
Org-mode version 8.3.4 (release_8.3.4-839-g3c729c @ 
/usr/local/share/emacs/site-lisp/org-mode/lisp/)

regards,

Charlie Millar
> Regards,
>

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2016-05-23  0:32 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2016-05-21 19:40 bug org-list-send-list Charles Millar
2016-05-22 23:17 ` Nicolas Goaziou
2016-05-23  0:31   ` Charles Millar

Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/emacs/org-mode.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).