[O] [PATCH] ox-taskjuggler.el: Check return code instead of error buffer

2018-05-18 Thread Grégoire Jadi
Hello orgmode@, I've recently tried taskjuggler and it reports some warnings about Fixnum: https://github.com/taskjuggler/TaskJuggler/issues/200 However, this warnings do not prevent taskjuggler from exporting a report. This patch checks the return code instead of the error buffer to determine

Re: [O] [PATCH] org-manual, org.texi: Fix typo in variable name

2018-03-30 Thread Grégoire Jadi
Nicolas Goaziou <m...@nicolasgoaziou.fr> writes: > Hello, > > daim...@omecha.info (Grégoire Jadi) writes: > >> Hello, >> >> Here is a patch to fix a small typo in the manual. > > Applied. Thank you. Thanks. >> I haven't followed the recent

[O] [PATCH] org-manual, org.texi: Fix typo in variable name

2018-03-29 Thread Grégoire Jadi
Hello, Here is a patch to fix a small typo in the manual. I haven't followed the recent development of org-mode so I don't know what is the new process regarding the manual. Thus, I patched both the =org-manual.org= and =org.texi=. From 9f030f2e8e37e4d36245234878435a79677b1511 Mon Sep 17

Re: [O] emacs laggs with saving clipboard to X clipboard manager

2018-03-03 Thread Grégoire Jadi
Joseph Vidal-Rosset writes: > Hello everybody, > > I apologize, I know that this topic is org-mode specific, but it is > related to emacs. > > My problem is exactly the same that is explained here : > [[https://github.com/syl20bnr/spacemacs/issues/9691]] > and

[O] bug in org parsing

2016-12-31 Thread Grégoire Jadi
Hi, I've found what I think is a bug in orgmode parsing. When the following file is parsed : * Test #+BEGIN_SRC emacs-lisp :exports results :results raw drawer (format "* Test2") #+END_SRC #+RESULTS: :RESULTS: * Test2 :END: The (truncated) result of `org-element-parse-buffer' is : (src-block

[O] bug when generating org text then exporting to html

2016-12-31 Thread Grégoire Jadi
Hi all, With the following file : * Test #+BEGIN_SRC elisp :results drawer :exports results (format "* My Headline") #+END_SRC When I export this file to HTML, I expect to have the same result as if I had the following file : * Test * My Headline However, the exporter also include a paragraph

[O] bug when generating org text then exporting to html

2016-12-31 Thread Grégoire Jadi
Hi all, With the following file : * Test #+BEGIN_SRC elisp :results drawer :exports results (format "* My Headline") #+END_SRC When I export this file to HTML, I expect to have the same result as if I had the following file : * Test * My Headline However, the exporter also include a paragraph

Re: [O] elfeed and orgmode integaration?

2015-12-07 Thread Grégoire Jadi
There is elfeed-org[1] to manage entries from an org file and I'm working on a PR to link to entries with org-mode[2]. 1: https://github.com/remyhonig/elfeed-org 2: https://github.com/remyhonig/elfeed-org/pull/18 Best, -- Grégoire Jadi signature.asc Description: PGP signature

Re: [O] org-crypt & multiple recipients

2015-10-26 Thread Grégoire Jadi
eys/23725786#23725786 And the answer below explains how GPG/PGP does to not have to copy the text for each recipient. https://stackoverflow.com/questions/597188/encryption-with-multiple-different-keys/28206835#28206835 Best, -- Grégoire Jadi signature.asc Description: PGP signature

Re: [O] [PATCH] Fix `org-capture-templates' type declaration

2015-10-25 Thread Grégoire Jadi
Nicolas Goaziou writes: > Hello, Hi, Thanks for the reply. > Grégoire Jadi <gregoire.j...@univ-nantes.fr> writes: > >> The attached patch fix the type declaration of org-capture-templates by >> allowing the user to use file, variable, function and sexp a

Re: [O] [PATCH] Fix `org-capture-templates' type declaration

2015-10-25 Thread Grégoire Jadi
Nicolas Goaziou writes: > Grégoire Jadi <gregoire.j...@univ-nantes.fr> writes: > >> With my patch, the customization interface looks like this >> - for a file : >> Target location: Value Menu File: >> File: Value Menu File: ~/org/notes.org >> >&

[O] [PATCH] Fix `org-capture-templates' type declaration

2015-10-24 Thread Grégoire Jadi
t; file+datetree+prompt) -(file :tag " File")) +(choice :tag " File" + file variable function sexp)) (list :tag "File & function" (const :format "" file+function) -(file :tag " File") +(choice :tag " File" + file variable function sexp) (sexp :tag " Function")) (list :tag "Current clocking task" (const :format "" clock)) -- 1.9.1 -- Grégoire Jadi signature.asc Description: PGP signature

[O] [PATCH] ob-python: Fix python session initialization

2015-10-01 Thread Grégoire Jadi
dr (assoc :session params + (cdr (assoc :session params)) params)) (result-params (cdr (assoc :result-params params))) (result-type (cdr (assoc :result-type params))) (return-val (when (and (eq result-type 'value) (not session)) -- -- Grégoire Ja

Re: [O] [PATCH] ob-python: Fix python session initialization

2015-10-01 Thread Grégoire Jadi
Grégoire Jadi writes: > Hi, > > There is a bug in ob-python, the parameters aren't used to initialize > the session. Here is a patch that fixes it. Err, discard this. It's not enough to fix the bug since `org-babel-python-initiate-session' doesn't use the params either. I'll com

Re: [O] info for org not found in emacs

2012-12-07 Thread Grégoire Jadi
Rainer M Krug r.m.k...@gmail.com writes: Hi I am using org from git using the following commands (in a script): ## cd ~/.emacs.d/org-mode-git/org-mode git checkout master git fetch --tags origin git pull git gc git checkout master make clean make make autoloads