[O] Bug: missing language for code block results in failure [9.1.14 (9.1.14-dist @ .../org/install/emacs/site-lisp/org/)]

2018-11-27 Thread John Ciolfi
Hi I ran into a confusing error due to missing language for a code block. Given attached issue.org which contains: #+BEGIN_SRC if (a > 1) { } #+END_SRC if you convert to pdf using the attached issue_repro.el via: emacs --batch -L /path/to/org/install/emacs/site-lisp/org

[O] Bug: src code blocks of type compilation-minor don't work when generating PDF [9.1.14 (9.1.14-dist @ /path/to/org/install/emacs/site-lisp/org/)]

2019-02-01 Thread John Ciolfi
Hi Using following emacs -q --batch -L /path/to/org/install/emacs/site-lisp/org -l my-org-to-pdf.el the generated PDF is incorrect. The "compilation-minor" code block gets replaced with the "c" code block, i.e. the c code block is duplicated. If you generate HTML all is good. Running org-li

Bug: menu item: Add Source Example [9.2.6 (9.2.6-dist @ /path/to/org/install/emacs/site-lisp/org/)]

2019-11-13 Thread John Ciolfi
Hi I just started using 9.2.6 and like the change for org-insert-structure-template to use key C-c C-, instead of the various

Bug: fontification error with #end_src in 9.3.7 [9.3.7 (9.3.7-dist @ /PATH/TO/org/install/emacs/site-lisp/org/)]

2020-06-11 Thread John Ciolfi
Given the following org file, on the #+end_src line, I get "Org mode fontification error in # at 9". If I place a newline before the #+end_src line, the error goes away. This is a recent regression. This worked fine in 9.2.6 and prior. #+begin_src C++ #include int main() {

Bug: Option to disable evaluation of code blocks during export [9.3.7 (9.3.7-dist @ /PATH/TO/org/install/emacs/site-lisp/org/)]

2020-06-11 Thread John Ciolfi
Could you add an option to disable evaluation of code blocks when exporting? If I have an org-file with many code blocks setup for evaulation (babel), when I export, I get prompted for every code block. Also the prompt does not clearly show which code block it's asking to evaluate. One soluti

Re: Bug: Option to disable evaluation of code blocks during export [9.3.7 (9.3.7-dist @ /PATH/TO/org/install/emacs/site-lisp/org/)]

2020-06-11 Thread John Ciolfi
have control from within the interactive org-export-dispatch function. Thanks John From: Nicolas Goaziou Sent: Thursday, June 11, 2020 5:28 PM To: John Ciolfi Cc: emacs-orgmode@gnu.org Subject: Re: Bug: Option to disable evaluation of code blocks during export

Re: Bug: Option to disable evaluation of code blocks during export [9.3.7 (9.3.7-dist @ /PATH/TO/org/install/emacs/site-lisp/org/)]

2020-06-12 Thread John Ciolfi
. If I were, I'd propose something for the org manual. Thanks John From: Nicolas Goaziou Sent: Friday, June 12, 2020 4:51 AM To: John Ciolfi Cc: emacs-orgmode@gnu.org Subject: Re: Bug: Option to disable evaluation of code blocks during export [9.3.7 (9.3.

Re: Bug: fontification error with #end_src in 9.3.7 [9.3.7 (9.3.7-dist @ /PATH/TO/org/install/emacs/site-lisp/org/)]

2020-06-15 Thread John Ciolfi
Thanks - I verified the fix. From: Kyle Meyer Sent: Saturday, June 13, 2020 3:21 PM To: John Ciolfi Cc: emacs-orgmode@gnu.org Subject: Re: Bug: fontification error with #end_src in 9.3.7 [9.3.7 (9.3.7-dist @ /PATH/TO/org/install/emacs/site-lisp/org/)] Kyle

Bug: org-odt-data-dir not defined correctly [9.4.4 (9.4.4-dist @ /test/install-26/org/install/emacs/site-lisp/org/)]

2020-12-23 Thread John Ciolfi
Hi When installing the org 9.4.4 I noticed that the defintion of org-odt-data-dir isn't correct. It is: (defvar org-odt-data-dir (expand-file-name "../../etc/" org-odt-lib-dir) It should be: (defvar org-odt-data-dir (expand-file-name "../../etc/org/" org-odt-lib-dir) To reproduce, make

Re: ob-octave.el - org-babel-matlab-with-emacs-link

2024-10-25 Thread John Ciolfi
Thanks. I'll prepare a patch and send it along for consideration. From: Leo Butler Sent: Thursday, October 24, 2024 10:50 AM To: John Ciolfi Cc: emacs-orgmode@gnu.org Subject: Re: ob-octave.el - org-babel-matlab-with-emacs-link Hi John, Have you had a lo

Re: ob-octave.el - org-babel-matlab-with-emacs-link

2024-10-24 Thread John Ciolfi
To use org with MATLAB, one needs to advise the org functions to change their behavior, and I'll like to eliminate that workaround, so I'd like to propose some changes, but am not clear on how to propose those changes. Thanks John ____ From: John Ci