Re: [O] src code fontification in org 8.3

2016-02-14 Thread Kyle Meyer
John Kitchin writes: > I have this set: > > (setq org-src-fontify-natively t) > > but the code blocks are all black text. > > Is there a known issue with a transition from 8.2.10 to 8.3 that would > affect fontification? or some previous setting that would interfere with

[O] org-mode table alignment options (siunitx S-column)

2016-02-14 Thread Michael Giepen
I would like to align the decimals of the values in the following table with siunitx "S column". #+LATEX_HEADER: \usepackage{siunitx} #+CAPTION: My caption #+ATTR_LATEX: :align lS | Column |Value | | A | 2234.2 | | B | 243.2345

[O] src code fontification in org 8.3

2016-02-14 Thread John Kitchin
Hi all, I think I recall from the mailist that in 8.3 src blocks are either colored or fontified. I have recently tried updating to 8.3, and I see neither. I have this set: (setq org-src-fontify-natively t) but the code blocks are all black text. Is there a known issue with a transition from

Re: [O] Icalendar export and contacts

2016-02-14 Thread Simon Thum
Then let's just hope it got fixed by accident ;) On 02/14/2016 05:49 PM, Nicolas Goaziou wrote: Hello, Simon Thum writes: Yes, but the exporter stalls on the [[fails]] link although it resolves in org. Provided you're right the reasoning seems off. I cannot reproduce

[O] [PATCH] org-attach: Fix git annex test directories

2016-02-14 Thread Erik Hetzner
* testing/lisp/test-org-attach-annex.el: `default-directory' should end in a slash to function properly. This was causing test failures on older versions of git-annex. --- Thanks for bearing with me on getting git-annex to work properly. This fixes an issue with running tests on debian with

Re: [O] Unit test table

2016-02-14 Thread Aaron Ecay
Hi Eduardo, 2016ko otsailak 13an, Eduardo Bellani-ek idatzi zuen: > > Hey Aaron, thanks for the input. > > I don't think that solves my problem. Look at the attached; I think it does what you’re asking for. Hope this helps, -- Aaron Ecay example.org Description: Lotus Organizer

[O] Invalid function: org-babel-header-args-safe-fn in Melpa

2016-02-14 Thread John Kitchin
Hi all, I am trying to debug an issue with installing org-mode from Melpa. After installing org from Melpa, I get this on starting emacs: byte-code: Invalid function: org-babel-header-args-safe-fn Org-mode version 8.3.3 (8.3.3-51-g30bcff-elpaplus @

Re: [O] What does the _ in `(defun org-element-section-parser (_) ...)' stands for?

2016-02-14 Thread John Kitchin
FYI, I found this today: (To silence byte-compiler warnings about unused variables, just use a variable name that start with an underscore. The byte-compiler interprets this as an indication that this is a variable known not to be used.)

Re: [O] Icalendar export and contacts

2016-02-14 Thread Nicolas Goaziou
Hello, Simon Thum writes: > Yes, but the exporter stalls on the [[fails]] link although it > resolves in org. Provided you're right the reasoning seems off. I cannot reproduce it. Regards, -- Nicolas Goaziou

Re: [O] Invalid function: org-babel-header-args-safe-fn in Melpa

2016-02-14 Thread John Kitchin
It does happen anyway. I had that in to get around this issue a while ago (long story, but it is why we still run 8.2.10), and I still get the issue without it. I think I have figured it out. The order the packages are installed is important. The code below illustrates the issue for me. If I

Re: [O] Errors get suppressed by org-babel-execute-src-block

2016-02-14 Thread Aaron Ecay
Hi Nick, 2016ko otsailak 12an, Nick Dokos-ek idatzi zuen: >> AFAICS my patch does not affect the work Michael did. I will test some >> simple remote execution scenarios before I push the patch, just in case. >> > > OK - good! I’ve tested, and remote execution seems to work (when tramp works

Re: [O] Invalid function: org-babel-header-args-safe-fn in Melpa

2016-02-14 Thread Achim Gratz
Aaron Ecay writes: > This looks like the kind of problem that results when org is byte-compiled > in an emacs with a different version of org loaded. This used to be a > problem when installing via package.el (and not just for org), but I think > there has been some work put into making sure it

Re: [O] org-attach-commit optional

2016-02-14 Thread John J Foerch
Nicolas Goaziou writes: > Hello, > > John J Foerch writes: > >> Okay, will do.Here is an updated version of the patch. I started the >> process for copyright assignment as well. > > Great. > > I added an entry in ORG-NEWS and applied your patch.

Re: [O] Invalid function: org-babel-header-args-safe-fn in Melpa

2016-02-14 Thread Achim Gratz
John Kitchin writes: > I am trying to debug an issue with installing org-mode from Melpa. There's no Org on Melpa or at least there shouldn't be. > After installing org from Melpa, I get this on starting emacs: > > byte-code: Invalid function: org-babel-header-args-safe-fn You must not install

Re: [O] Invalid function: org-babel-header-args-safe-fn in Melpa

2016-02-14 Thread Aaron Ecay
Hi John, 2016ko otsailak 14an, John Kitchin-ek idatzi zuen: > > Hi all, > > I am trying to debug an issue with installing org-mode from Melpa. > > After installing org from Melpa, I get this on starting emacs: > > byte-code: Invalid function: org-babel-header-args-safe-fn > Org-mode version

Re: [O] org-attach-commit optional

2016-02-14 Thread Nicolas Goaziou
Hello, John J Foerch writes: > Okay, will do.Here is an updated version of the patch. I started the > process for copyright assignment as well. Great. I added an entry in ORG-NEWS and applied your patch. Thank you. Regards, -- Nicolas Goaziou

Re: [O] [PATCH] testing/lisp/test-org-attach-annex.el: New file

2016-02-14 Thread Achim Gratz
Erik Hetzner writes: > * testing/lisp/test-org-attach-annex.el: Move all org-attach tests that > use git-annex to this file, which can test for the presence of > git-annex. Prevents tests failing on systems where git-annex is not > installed. Thanks, pushed with a slight edit of the commit

[O] [PATCH] EPS generation from latex source block

2016-02-14 Thread Thibault Marin
Here is a small patch I use to produce TikZ EPS files from LaTeX source blocks. >From d750c26cabc87e4917974df8080714d5d7e2c9a8 Mon Sep 17 00:00:00 2001 From: thibault Date: Sun, 14 Feb 2016 03:07:20 -0600 Subject: [PATCH] Add eps output to ob-latex (without imagemagick) To: emacs-orgmode@gnu.org