Re: Heading toward Org 9.5

2021-09-21 Thread Adam Porter
Bastien writes: > I'll work on integrating small bug fixes and feature improvements > listed on https://updates.orgmode.org during this week, aiming at > releasing Org 9.5 over the next week-end. > > If your patch does not appear on updates.orgmode.org and didn't > receive an answer on the

[BUG] Possible Outdated Documentation, Possible Bug. "Can't compile a java block without a classname." Org-babel babel java

2021-09-21 Thread uruseiiyatsura
[Java Source Code Blocks in Org Mode](https://orgmode.org/worg/org-contrib/babel/languages/ob-doc-java.html) says the following: "It is not necessary to include the class statement or define a main method. ob-java will wrap a source code block in boilerplate class and main method definitions

Re: [PATCH] lisp/ox-html.el: Restore org-svg class

2021-09-21 Thread Tom Gillespie
Bumping this patch for 9.5. On Fri, Jul 30, 2021 at 8:59 PM Tom Gillespie wrote: > > Hi, >This patch restores the addition of class="org-svg" to svg images > during html export. Best! > Tom

Re: Org lint and named source blocks

2021-09-21 Thread Tom Gillespie
> Should we allow syntax like #+KEYWORD:value to be correct or do we > require a whitespace/space after colon all the time? The spec as written is ambiguous/silent on this issue. In my work on laundry tokenizer and grammar I have found keyword syntax to be a thorny issue, and I strongly suggest

Re: [PATCH] ox.el: add smart quotes for Greek

2021-09-21 Thread Juan Manuel Macías
Hi Maxim, Max Nikulin writes: > [...] > Possible options: > - Add the note directly to the .el file. I am afraid, as inline > comment it could be considered too long. > - To a file in the "doc" directory dedicated to such decisions (there > is no such file yet however) with a reference from

Re: BUG Visibility Cycling with inline tasks

2021-09-21 Thread Michael Dauer
Hi Ihor, Thanks for checking. I could narrow down on the issue. It happens after (require 'org-inlinetask) is executed. So to reproduce: 1. emacs -Q 2. paste the following snipped (right into the scratch buffer) 3. execute the two commands at the end C-x C-e for each 4. collapse all (TAB TAB)

Re: [patch suggestion] Mitigating the poor Emacs performance on huge org files: Do not use overlays for PROPERTY and LOGBOOK drawers

2021-09-21 Thread Timothy
I’m suspect it too short notice for such a large change to make its way into Org 9.5, but Bastien’s release email is certainly a good prompt to bump this. Bastien writes: > Thank you *very much* for this work and sorry for the slow reply. > > I urge everyone to test this change, as I’d like to

Re: Org lint and named source blocks

2021-09-21 Thread Ihor Radchenko
Dominik Schrempf writes: > Running =org-lint= on an Org file containing > > #+NAME:Hello > #+BEGIN_SRC emacs-lisp :exports code > #+END_SRC > > I get the following error: > #+begin_quote > Debugger entered--Lisp error: (search-failed "^[ \11]*#\\+[A-Za-z]+: +Hello > *$") > #+end_quote

Re: Org lint and Haskell source code blocks

2021-09-21 Thread Ihor Radchenko
Dominik Schrempf writes: > Thank you, org-lint works just fine after applying your patch! The patch is applied to master as c9dc6603a. Best, Ihor

Org lint and named source blocks

2021-09-21 Thread Dominik Schrempf
Thank you for the Haskell fix! I found another issue (not a bug but could be handled better): Running =org-lint= on an Org file containing #+NAME:Hello #+BEGIN_SRC emacs-lisp :exports code #+END_SRC I get the following error: #+begin_quote Debugger entered--Lisp error: (search-failed "^[

Re: Org lint and Haskell source code blocks

2021-09-21 Thread Dominik Schrempf
Thank you, org-lint works just fine after applying your patch! Ihor Radchenko writes: > Dominik Schrempf writes: > >> whenever I have a Haskell source code block in my Org mode file, and I >> execute >> =org-lint=, I get the following error: > > Confirmed. > > Can you try with the attached

Re: Org lint and Haskell source code blocks

2021-09-21 Thread Ihor Radchenko
Dominik Schrempf writes: > whenever I have a Haskell source code block in my Org mode file, and I execute > =org-lint=, I get the following error: Confirmed. Can you try with the attached patch? Best, Ihor >From f640249d08a14bfde417c38274634b88c789d1c7 Mon Sep 17 00:00:00 2001 Message-Id:

Org lint and Haskell source code blocks

2021-09-21 Thread Dominik Schrempf
Hi, whenever I have a Haskell source code block in my Org mode file, and I execute =org-lint=, I get the following error: #+begin_quote Debugger entered--Lisp error: (wrong-type-argument listp :any) #+end_quote (This was obtained with a minimal file just having: #+BEGIN_SRC haskell inc n = n+1