Re: [O] The name attribute is obsolete. Consider putting an id attribute

2017-03-19 Thread Nicolas Goaziou
Hello, Jean Louis writes: > I am exporting Org to Markdown, and when used with: > > > > What is GNU CLISP? This is not Markdown syntax. You should check the part of your process responsible for turning Markdown into HTML. For the record, by default, Org uses "id" instead of

Re: [O] [PATCH] org-clock: Align formula column in clock tables

2017-03-19 Thread Nicolas Goaziou
Hello, Yasushi SHOJI writes: > * lisp/org-clock.el (org-clocktable-write-default): Align formula > column in clock tables. > > Here is an ECM: > > * foo > ** sub > :LOGBOOK: > CLOCK: [2017-03-18 Sat 15:00]--[2017-03-18 Sat 15:15] => 0:15 > :END:

Re: [O] The name attribute is obsolete. Consider putting an id attribute

2017-03-19 Thread Jean Louis
On Sun, Mar 19, 2017 at 10:26:45AM +0100, Nicolas Goaziou wrote: > Hello, > > Jean Louis writes: > > > I am exporting Org to Markdown, and when used with: > > > > > > > > What is GNU CLISP? > > This is not Markdown syntax. You should check the part of your process >

Re: [O] The name attribute is obsolete. Consider putting an id attribute

2017-03-19 Thread Nicolas Goaziou
Hello, Jean Louis writes: > Here below is the org file, and if I process it with: > emacs tmp/test.org --batch -f org-mode -f org-md-export-to-markdown > > Then I get the file, where I can see the following line: > # What is GNU CLISP? I cannot reproduce it. Are you using

Re: [O] The name attribute is obsolete. Consider putting an id attribute

2017-03-19 Thread Nicolas Goaziou
Hello, Jean Louis writes: > I am using this Org version: Version: 20170105.1723, and I am using > GNU Emacs from "GNU Emacs 26.0.50.1 (x86_64-unknown-linux-gnu, X > toolkit, Xaw3d scroll bars) of 2016-12-07" You may have a mixed installation. > Even if I run with the -Q, I

Re: [O] Fontification error

2017-03-19 Thread Aaron Jensen
This is in reply to the Fontification error Thomas S. Dye reported on Feb 13 2017: http://lists.gnu.org/archive/html/emacs-orgmode/2017-02/msg00280.html I was able to bisect this error to the following commit: f2a5104e45b6f44a08960ae49ba20c124a8fa9d8 is the first bad commit commit

Re: [O] The name attribute is obsolete. Consider putting an id attribute

2017-03-19 Thread Jean Louis
On Sun, Mar 19, 2017 at 02:25:15PM +0100, Nicolas Goaziou wrote: > You may have a mixed installation. > > > Even if I run with the -Q, I get same result, and that is without > > personal config: > > emacs -Q tmp/test.org --batch -f org-mode -f org-md-export-to-markdown > > This will load Org

Re: [O] Fontification error

2017-03-19 Thread Sébastien Le Maguer
Hello, I actually have this problem without using spacemacs. However, I didn't have time to debug that yet (that's a shame :(). Kind regards, Sébastien On Sun, Mar 19 2017 (18:05), Kyle Meyer wrote: > Aaron Jensen writes: > >> This is in reply to the

Re: [O] The name attribute is obsolete. Consider putting an id attribute

2017-03-19 Thread Jean Louis
On Sun, Mar 19, 2017 at 02:06:55PM +0100, Nicolas Goaziou wrote: > Hello, > > Jean Louis writes: > > > Here below is the org file, and if I process it with: > > emacs tmp/test.org --batch -f org-mode -f org-md-export-to-markdown > > > > Then I get the file, where I can see the

Re: [O] Fontification error

2017-03-19 Thread Kyle Meyer
Aaron Jensen writes: > This is in reply to the Fontification error Thomas S. Dye reported on > Feb 13 2017: > > http://lists.gnu.org/archive/html/emacs-orgmode/2017-02/msg00280.html > > I was able to bisect this error to the following commit: > >

[O] [PATCH] Reduce scope of inhibit-modification-hooks

2017-03-19 Thread Aaron Jensen
This fixes the fontification error discussed here: http://lists.gnu.org/archive/html/emacs-orgmode/2017-03/msg00423.html and here: http://lists.gnu.org/archive/html/emacs-orgmode/2017-02/msg00280.html --- lisp/org-src.el | 26 +- 1 file changed, 13 insertions(+), 13

[O] Bug: Errors when saving from babel block [9.0.5 (9.0.5-elpa @ ~/.emacs.d/elpa/org-20170210/)]

2017-03-19 Thread Alex Branham
In the latest org release (9.0.5), I get errors when trying to save a buffer while editing inside a babel source block. I can reproduce this using Emacs 25.1 and 25.2rc2. Using: emacs -Q -l ~/org-debug.el where org-debug.el just consists of (package-initialize) since I've previously

[O] Bug: Error when trying to set a countdown timer [8.2.10 (release_8.2.10 @ /usr/local/Cellar/emacs/25.1/share/emacs/25.1/lisp/org/)]

2017-03-19 Thread Parham Doustdar
backtrace Description: Binary data Hi, I tried setting a countdown timer in an Org buffer today for my first time ever, but it failed with an error saying that Emacs expected a string, but got nil. Here is what I do: 1. Press C-x test RET to create a new buffer named 'test'. 2. Press M-x

Re: [O] Bug: Error when trying to set a countdown timer [8.2.10 (release_8.2.10 @ /usr/local/Cellar/emacs/25.1/share/emacs/25.1/lisp/org/)]

2017-03-19 Thread Nicolas Goaziou
Hello, Parham Doustdar writes: > Emacs : GNU Emacs 25.1.1 (x86_64-apple-darwin15.6.0, NS appkit-1404.47 > Version 10.11.6 (Build 15G1108)) > of 2016-11-25 > Package: Org-mode version 8.2.10 (release_8.2.10 @ > /usr/local/Cellar/emacs/25.1/share/emacs/25.1/lisp/org/) This

Re: [O] Fontification error

2017-03-19 Thread Noam Postavsky
On Sun, Mar 19, 2017 at 1:05 PM, Kyle Meyer wrote: >> >> * lisp/org-src.el (org-src-font-lock-fontify-block): Let-bind >> `inhibit-modification-hooks' to nil, since this function can be called >> from jit-lock-function which binds that variable to t (Bug#25132). >> >>

Re: [O] Fontification error

2017-03-19 Thread Nicolas Goaziou
Hello, Aaron Jensen writes: > From cdf2c445e46d5691ee82adb1a6ca0bb0ae6bbd1b Mon Sep 17 00:00:00 2001 > From: Aaron Jensen > Date: Sun, 19 Mar 2017 12:49:18 -0700 > Subject: [PATCH] Reduce scope of inhibit-modification-hooks > > This fixes a

[O] Schedule next READY item under heading

2017-03-19 Thread Alex Branham
Hello - I asked this on stackexchange and didn't get an answer so I figure that I would try here, apologies for cross-posting. I have a situation where I have a lot of similar tasks under a header like so: * Header ** READY Task 1 ** NREADY Task 2 ** READY Task 3 ** READY Task 4 ** NREADY

[O] Bug: habit module [8.2.10 (release_8.2.10 @ /usr/share/emacs/24.5/lisp/org/)]

2017-03-19 Thread Daniel Fortes
Remember to cover the basics, that is, what you expected to happen and what in fact did happen. You don't know how to make a good report? See http://orgmode.org/manual/Feedback.html#Feedback Your bug report will be posted to the Org-mode mailing list.

Re: [O] Fontification error

2017-03-19 Thread Aaron Jensen
That appeared to fix it for me! Thanks. >From cdf2c445e46d5691ee82adb1a6ca0bb0ae6bbd1b Mon Sep 17 00:00:00 2001 From: Aaron Jensen Date: Sun, 19 Mar 2017 12:49:18 -0700 Subject: [PATCH] Reduce scope of inhibit-modification-hooks This fixes a fontification error that some

Re: [O] Bug: habit module [8.2.10 (release_8.2.10 @ /usr/share/emacs/24.5/lisp/org/)]

2017-03-19 Thread Daniel Fortes
Maybe this is language related? My weekdays appear in portuguese, when I remove the weekday it works Em seg, 13 de mar de 2017 às 18:31, Daniel Fortes escreveu: > Remember to cover the basics, that is, what you expected to happen and > what in fact did happen. You don't

Re: [O] Fontification error

2017-03-19 Thread Aaron Jensen
On Sun, Mar 19, 2017 at 3:58 PM, Nicolas Goaziou wrote: > Hello, > > Applied. Thank you. > > I added TINYCHANGE at the end of the commit message since I don't know > whether you signed FSF papers or not. Thank you! I have not yet. Aaron

[O] Org export buffer opens at buffer's end

2017-03-19 Thread David Mann
When I do C-c C-e to start an org export, the export buffer opens at its bottom, with the top cut off in the window. In past versions the buffer opened at the top. I am using GNU Emacs 25.1.50.1 (x86_64-apple-darwin15.3.0, NS appkit-1404.34 Version 10.11.3 (Build 15D21)) of 2016-03-13 and Org