Re: [PATCH] Re: Bug: Incorrect indentation in Org Babel list output with multiline text [9.4.4 (release_9.4.4 @ /Applications/Emacs.app/Contents/Resources/lisp/org/)]

2022-10-21 Thread Ihor Radchenko
Rudolf Adamkovič writes: > I wrote a regression test, so that we do not need to fix this problem > again next time. Please see the attached patch. Thanks! Applied onto main. https://git.savannah.gnu.org/cgit/emacs/org-mode.git/commit/?id=524e0e0b7b5eb4c02f3da5eaf59eb1df82d1c1cc -- Ihor

[PATCH] Re: Bug: Incorrect indentation in Org Babel list output with multiline text [9.4.4 (release_9.4.4 @ /Applications/Emacs.app/Contents/Resources/lisp/org/)]

2022-10-21 Thread Rudolf Adamkovič
Ihor Radchenko writes: > Applied onto main. I wrote a regression test, so that we do not need to fix this problem again next time. Please see the attached patch. >From 9cb3c86abcc1fe983b5e6d2ff7a80c1d714fb126 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rudolf=20Adamkovi=C4=8D?= Date: Fri, 21

Re: Bug: Incorrect indentation in Org Babel list output with multiline text [9.4.4 (release_9.4.4 @ /Applications/Emacs.app/Contents/Resources/lisp/org/)]

2022-10-21 Thread Ihor Radchenko
Vikas Kumar writes: > Here is a patch with the fix. Thanks, and sorry for the late reply. Applied onto main. https://git.savannah.gnu.org/cgit/emacs/org-mode.git/commit/?id=e7005787993f521f76e99f00e8a04d87703c493f You are now listed as an Org contributor

Re: [PATCH] Bug: Incorrect indentation in Org Babel list output with multiline text [9.4.4 (release_9.4.4 @ /Applications/Emacs.app/Contents/Resources/lisp/org/)]

2022-01-11 Thread Vikas Kumar
Thanks Sébastien On Tue, Jan 11, 2022 at 12:05 PM Sébastien Miquel < sebastien.miq...@posteo.eu> wrote: > Hi, > > Vikas Kumar writes: > > Here is a patch with the fix. > Thank you for the patch. > > I'm just adding the [PATCH] cookie, so that this shows up on > https://updates.orgmode.org/. > >

Re: [PATCH] Bug: Incorrect indentation in Org Babel list output with multiline text [9.4.4 (release_9.4.4 @ /Applications/Emacs.app/Contents/Resources/lisp/org/)]

2022-01-11 Thread Sébastien Miquel
Hi, Vikas Kumar writes: Here is a patch with the fix. Thank you for the patch. I'm just adding the [PATCH] cookie, so that this shows up on https://updates.orgmode.org/. A maintainer will eventually get back to you, but it may take a while (couple of months at most). Regards, --

Re: Bug: Incorrect indentation in Org Babel list output with multiline text [9.4.4 (release_9.4.4 @ /Applications/Emacs.app/Contents/Resources/lisp/org/)]

2022-01-11 Thread Vikas Kumar
Hello, can anyone take a look at this problem and the patch? -- Thanks, Vikas On Sun, Jan 9, 2022 at 12:42 AM Vikas Kumar wrote: > Here is a patch with the fix. > > -- > Thanks, > Vikas > > On Sat, Jan 8, 2022 at 9:22 PM Vikas Kumar wrote: > >> Hello, >> >> When I use ':results value list'

Re: Bug: Incorrect indentation in Org Babel list output with multiline text [9.4.4 (release_9.4.4 @ /Applications/Emacs.app/Contents/Resources/lisp/org/)]

2022-01-09 Thread Vikas Kumar
Here is a patch with the fix. -- Thanks, Vikas On Sat, Jan 8, 2022 at 9:22 PM Vikas Kumar wrote: > Hello, > > When I use ':results value list' in an emacs-lisp source block it looks > like Babel does > not indent list items correctly when one of the items is a multi-line text. > > To

Bug: Incorrect indentation in Org Babel list output with multiline text [9.4.4 (release_9.4.4 @ /Applications/Emacs.app/Contents/Resources/lisp/org/)]

2022-01-08 Thread Vikas Kumar
Hello, When I use ':results value list' in an emacs-lisp source block it looks like Babel does not indent list items correctly when one of the items is a multi-line text. To reproduce evaluate the following code block: #+begin_src emacs-lisp :results value list '("Foo1\nBar1" "Foo2\n\nBar2")