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

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, >>

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

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") #