[O] [PATCH] ob-C.el: Fix command to perform on remote host

2017-04-23 Thread Иван Трусков
* lisp/ob-C.el (org-babel-C-execute): Made sure name of compiled program is converted to local representation before sending it to the shell on remote host. The problem was when one would try to evaluate C source code block in the file on remote host. Compilation would go normally, then evaluation

[O] Infinite loop with org-inlinetask and org-sticky-header [was Re: ANN: org-sticky-header]

2017-04-23 Thread Adam Porter
Hi Charles, Thanks for reporting this. This is bizarre. I reproduced it with my personal config, and with "emacs -q", but it only happens if org-inlinetask is loaded with "(require 'org-inlinetask)". This is with Emacs 25.1 and the Org package distributed with it for "emacs -q", and with Emacs

Re: [O] set org-attach-directory location per buffer

2017-04-23 Thread Kyle Meyer
Xebar Saram writes: > i was wondering if one could use perhaps local variables in separate org > files to define the location of the attachment folder per file [...] Have you tried setting it as a file-local variable? (info "(emacs)Specifying File Variables") > so that for each folder the

Re: [O] Bug: export does not ignore #+INCLUDE if archived or tagged :noexport: Package: Org mode version 9.0.5 (9.0.5-elpaplus @ ~/.emacs.d/elpa/org-plus-contrib-20170210/)

2017-04-23 Thread Nicolas Goaziou
Hello, Rasmus writes: > It's fine to exclude #+include in COMMENT headlines IMO. Done in master. Regards, -- Nicolas Goaziou

Re: [O] Bug: export does not ignore #+INCLUDE if archived or tagged :noexport: Package: Org mode version 9.0.5 (9.0.5-elpaplus @ ~/.emacs.d/elpa/org-plus-contrib-20170210/)

2017-04-23 Thread Rasmus
Nicolas Goaziou writes: >>> when archiving sections or exclude them from export I would expect >>> them being exempt from being evaluated during export. >>> The section archived or marked as ~:no export:~ is still evaluated >>> and there is an error >>> if the reference in the include file is no

[O] LaTeX export of org file uses listings instead of minted, why?

2017-04-23 Thread vendo.li...@libero.it
Does this code from the backed-up .emacs interfere with TeX not working with MINTED in the body of the .tex file? Should I eliminate it? I'm thinking of posting all the bits of code where `minted' is mentioned, in the hopes that some of you experts can tell me whether I could eliminate/edit it.

Re: [O] function-finding-location?

2017-04-23 Thread Xebar Saram
thx guys z On Sun, Apr 23, 2017 at 10:07 AM, Michael Welle wrote: > Hello, > > Xebar Saram writes: > > > today i saw this in the DOCU > > > > (file+function "path/to/file" function-finding-location) > > A function to find the right location in the file. > > > > i assume you dont just use "fun

[O] org capture properties from a list of strings?

2017-04-23 Thread Xebar Saram
Hi all so i currently have this in my capture templates :PROPERTIES: :Time: %^{minutes|-|10|15|30|60} :Rating: %^{rating?|-|1|2|3|4|5} :END: i was wondering if instead of manually putting the values in each line i can perhaps supply a list like this (defun returns-a-list-of-strings2 () (list

Re: [O] LaTeX export of org file uses listings instead of minted, why?

2017-04-23 Thread Kaushal Modi
Not an answer to the issue you are seeing, but I noticed that you are using Emacs 24.x and Org-mode 8.2.x. The Org-mode version especially is too old. I can only suggest that you update to the latest version of Org-mode mode (9.0.5) (and also that of Emacs (25.2) if you get a chance), so that the

[O] LaTeX export of org file uses listings instead of minted, why?

2017-04-23 Thread vendo.li...@libero.it
Hello again, I'm still trying to find out why emacs doesn't pick up MINTED instead of LISTINGS to handle code blocks when exporting files from .org to .pdf, via .tex. I backed-up my previous .emacs file (which had a lot of customization for Beamer, AUCTeX etc.), loaded Nick Dokos' minimal init f

Re: [O] function-finding-location?

2017-04-23 Thread Michael Welle
Hello, Xebar Saram writes: > today i saw this in the DOCU > > (file+function "path/to/file" function-finding-location) > A function to find the right location in the file. > > i assume you dont just use "function-finding-location" but rather a > specific function. are there examples for such fun