Rudolf Adamkovič writes:
> Ihor Radchenko writes:
>
>> May you try the attached tentative patch set?
>
> With the two patches applied, the bug is gone. Yay!
Fixed, onto main.
https://git.savannah.gnu.org/cgit/emacs/org-mode.git/commit/?id=90d4ae92e
https://git.savannah.gnu.org/cgit/emacs/org-m
Ihor Radchenko writes:
> May you try the attached tentative patch set?
With the two patches applied, the bug is gone. Yay!
Thank you!
I have noticed two issues during testing:
- a warning on 'make':
Compiling single /Users/salutis/src/org-mode/lisp/org-table.el...
In orgtbl-to-generic:
Ihor Radchenko writes:
>> #+BEGIN_SRC emacs-lisp
>> (list (list 1 2) (list "/" "<>") 'hline (list 3 4) (list 5 6))
>> #+END_SRC
>>
>> Org Babel outputs
>> ...
>> with the second element of the list
>>
>> (list "/" "<>")
>>
>> swallowed, without a word.
>>
>> Why would Org Babel do this?
>
Ihor Radchenko writes:
> Rudolf Adamkovič writes:
>
> This is because of how `orgtbl-to-generic' is implemented. It is taking
> pieces from the full ox.el exporter, hard-coding certain things. For
> example, it always removes special table lines:
>
> ;; Since we are going to export using a l
It's weird because with swapping "<>" and "/" with escape-syntax character has
no problem in the table:
#+BEGIN_SRC emacs-lisp
(list (list 1 2) (list "\<>" "\/") 'hline (list 3 4) (list 5 6))
#+end_src
#+RESULTS:
| 1 | 2 |
| <> | / |
|+---|
| 3 | 4 |
| 5 | 6 |
On 6/30/24 11:43 AM, Rud
"S. Sajad Hosseini Balef" writes:
> It's seems related to the "<>" bacuse with any other strings I haven't
> such issue.
>From what I see, the culprit is the "/" because, as soon as it appears,
Org Babel drops the row from the output. Then, when I replace the "/"
with something different, such
horhhgnecuvehluhhsthgvrhfuihiivgeptdenucfrrghrrghmpehmrghilh
hfrhhomheprhhuugholhhfsegruggrmhhkohhvihgtrdhorhhg
X-ME-Proxy:
Feedback-ID: i88214938:Fastmail
Received: by mail.messagingengine.com (Postfix) with ESMTPA for
; Fri, 28 Jun 2024 08:43:34 -0400 (EDT)
From: =?utf-8?Q?Rudolf_Adamkovi=C4=8D?=
To: emacs-orgmode@gnu.org
Sub
Rudolf Adamkovič writes:
> Given the source block
>
> #+BEGIN_SRC emacs-lisp
> (list (list 1 2) (list "/" "<>") 'hline (list 3 4) (list 5 6))
> #+END_SRC
>
> Org Babel outputs
> ...
> with the second element of the list
>
> (list "/" "<>")
>
> swallowed, without a word.
>
> Why would Org
Given the source block
#+BEGIN_SRC emacs-lisp
(list (list 1 2) (list "/" "<>") 'hline (list 3 4) (list 5 6))
#+END_SRC
Org Babel outputs
#+RESULTS:
| 1 | 2 |
|---+---|
| 3 | 4 |
| 5 | 6 |
with the second element of the list
(list "/" "<>")
swallowed, without a word.
Why wou