Re: [O] mailing list search given problems with gmane?

2016-09-05 Thread Grant Rettke
On Mon, Sep 5, 2016 at 10:50 AM, Eric S Fraga wrote: > do we have any alternative means to search the mailing list given the > current problems with gmane? https://lists.gnu.org/archive/html/emacs-orgmode/

[O] undo undoes too much

2016-09-05 Thread Samuel Wales
recent maint. in agenda i add a tag to a task, then doneify it. i go to the outline. i do undo-tree-undo. both the adding of the tag and the logbook entry get undone. i expected that only the logbook entry would get undone.

[O] mailing list search given problems with gmane?

2016-09-05 Thread Eric S Fraga
Dear all, do we have any alternative means to search the mailing list given the current problems with gmane? Thanks, eric -- : Eric S Fraga (0xFFFCF67D), Emacs 25.0.94.1, Org release_8.3.5-1070-g190476

Re: [O] There is no line to end here at LaTeX org-ref export

2016-09-05 Thread John Kitchin
that does explain why I couldn't reproduce what you see. I have org-export-preserve-breaks set to nil. I didn't even know about that one! Glad to hear you figured it out. Florian Lindner writes: > Am 02.09.2016 um 15:12 schrieb Eric S Fraga: >> Can you post an actual org test file as an

Re: [O] There is no line to end here at LaTeX org-ref export

2016-09-05 Thread Florian Lindner
Am 02.09.2016 um 15:12 schrieb Eric S Fraga: > Can you post an actual org test file as an attachment? And also the > resulting LaTeX file on export? Hey, sorry for the late reply. I tried to reproduce the problem firstly using emacs -Q but it worked like that. After some bisect debugging I

Re: [O] Can't store link in mu4e

2016-09-05 Thread Brett Presnell
Nicolas Goaziou writes: > Brett Presnell writes: > >> I'll report this to the mu developer in case he isn't already aware of >> the upcoming change in org mode. I wonder if org-mu4e.el wouldn't be >> better maintained as a part of org (like

Re: [O] [PATCH] org-mime supports emacs24

2016-09-05 Thread Nicolas Goaziou
Hello, chen bin writes: > I agree with you, maybe pointing to project is the better solution. There is an "org-mime" on Marmelade already. It doesn't seem to be your project, tho. It could be useful to add yours to any ELPA and have the previous one removed so as to avoid

Re: [O] Can't store link in mu4e

2016-09-05 Thread Nicolas Goaziou
Hello, Brett Presnell writes: > I'll report this to the mu developer in case he isn't already aware of > the upcoming change in org mode. I wonder if org-mu4e.el wouldn't be > better maintained as a part of org (like org-gnus.el and org-mew.el) > rather than as a part

Re: [O] table/calc: subscr() fails with date

2016-09-05 Thread Karl Voit
* Nicolas Goaziou wrote: > Hello, Hello Nicolas, > Karl Voit writes: > >> I've found a bug when using subscr() to get the value of the previous >> row. With the following date values, it fails and I don't have an idea >> why: >> >> | date

Re: [O] org-publish-after-publishing-hook

2016-09-05 Thread Michael Welle
Hello, I found the problem. The publishing function must return the file name, which it should do... except there was a bug in it. I used something like (fboundp 'foo) as a condition and foo is a variable. I wonder how that ever did something useful... Sorry for the noise hmw

[O] org-publish-after-publishing-hook

2016-09-05 Thread Michael Welle
Hello, I have a hook like follows: (defun foo (in out) (message "o-p-a-p-h in: '%s' out: '%s'" in out)) (add-hook 'org-publish-after-publishing-hook 'foo) Now I publish a project that is defined in org-publish-project-alist as follows: ("web-static" :base-directory "~/work/ORG/web"