unofficial mirror of bug-gnu-emacs@gnu.org 
 help / color / mirror / code / Atom feed
* bug#71484: 30.0.50; An critical error after upgrade to Org-9.7
@ 2024-06-10 17:25 Lin Sun
  2024-06-10 20:08 ` Lin Sun
  2024-06-11 10:47 ` Ihor Radchenko
  0 siblings, 2 replies; 6+ messages in thread
From: Lin Sun @ 2024-06-10 17:25 UTC (permalink / raw)
  To: 71484

After upgrading emacs-30 to last git one (with the Org-9.7 commit
https://git.savannah.gnu.org/cgit/emacs.git/diff/lisp/org/org.el?id=5a125fb5a9736bd3c67cf6ff9acc185d8e2260e2),

An error will happened for an image inside a table, a simple org file
can reproduce the issue:

$ touch  /tmp/a.png

$ echo '|[[file:a.png]]|' > /tmp/a.org

$ emacs -q /tmp/a.org -eval '(org-toggle-inline-images)'

Emacs was built with image support, and started with GUI.

Please help investigate this issue. Thanks.





^ permalink raw reply	[flat|nested] 6+ messages in thread

* bug#71484: 30.0.50; An critical error after upgrade to Org-9.7
  2024-06-10 17:25 bug#71484: 30.0.50; An critical error after upgrade to Org-9.7 Lin Sun
@ 2024-06-10 20:08 ` Lin Sun
  2024-06-11  3:42   ` Kyle Meyer
  2024-06-11 10:47 ` Ihor Radchenko
  1 sibling, 1 reply; 6+ messages in thread
From: Lin Sun @ 2024-06-10 20:08 UTC (permalink / raw)
  To: 71484, kyle

>From: Lin Sun <sunlin7.mail <at> gmail.com>
>Subject: 30.0.50; An critical error after upgrade to Org-9.7
>Date: Mon, 10 Jun 2024 17:25:11 +0000
>After upgrading emacs-30 to last git one (with the Org-9.7 commit
>https://git.savannah.gnu.org/cgit/emacs.git/diff/lisp/org/org.el?id=5a125fb5a9736bd3c67cf6ff9acc185d8e2260e2),
>An error will happened for an image inside a table, a simple org file
>can reproduce the issue:
>$ touch  /tmp/a.png
>$ echo '|[[file:a.png]]|' > /tmp/a.org
>$ emacs -q /tmp/a.org -eval '(org-toggle-inline-images)'
>Emacs was built with image support, and started with GUI.

Hi Kyle, could you please help investigate this issue? Thanks





^ permalink raw reply	[flat|nested] 6+ messages in thread

* bug#71484: 30.0.50; An critical error after upgrade to Org-9.7
  2024-06-10 20:08 ` Lin Sun
@ 2024-06-11  3:42   ` Kyle Meyer
  0 siblings, 0 replies; 6+ messages in thread
From: Kyle Meyer @ 2024-06-11  3:42 UTC (permalink / raw)
  To: Lin Sun; +Cc: Karthik Chikmagalur, Ihor Radchenko, 71484

Lin Sun writes:

>>An error will happened for an image inside a table, a simple org file
>>can reproduce the issue:
>>$ touch  /tmp/a.png
>>$ echo '|[[file:a.png]]|' > /tmp/a.org
>>$ emacs -q /tmp/a.org -eval '(org-toggle-inline-images)'
>>Emacs was built with image support, and started with GUI.
>
> Hi Kyle, could you please help investigate this issue? Thanks

It looks like the error was introduced with Org's 6011e7a48 (org: Add
image alignment, 2023-12-21).  Karthik or Ihor may have ideas on what
the right fix is here.

(I recommend you report issues directly to the Org developers by sending
a message to <emacs-orgmode@gnu.org>.)





^ permalink raw reply	[flat|nested] 6+ messages in thread

* bug#71484: 30.0.50; An critical error after upgrade to Org-9.7
  2024-06-10 17:25 bug#71484: 30.0.50; An critical error after upgrade to Org-9.7 Lin Sun
  2024-06-10 20:08 ` Lin Sun
@ 2024-06-11 10:47 ` Ihor Radchenko
  2024-06-11 15:06   ` Lin Sun
  1 sibling, 1 reply; 6+ messages in thread
From: Ihor Radchenko @ 2024-06-11 10:47 UTC (permalink / raw)
  To: Lin Sun; +Cc: 71484

Lin Sun <sunlin7.mail@gmail.com> writes:

> $ touch  /tmp/a.png
>
> $ echo '|[[file:a.png]]|' > /tmp/a.org
>
> $ emacs -q /tmp/a.org -eval '(org-toggle-inline-images)'

Fixed, on bugfix.
https://git.savannah.gnu.org/cgit/emacs/org-mode.git/commit/?id=3e4c89e55

-- 
Ihor Radchenko // yantar92,
Org mode contributor,
Learn more about Org mode at <https://orgmode.org/>.
Support Org development at <https://liberapay.com/org-mode>,
or support my work at <https://liberapay.com/yantar92>





^ permalink raw reply	[flat|nested] 6+ messages in thread

* bug#71484: 30.0.50; An critical error after upgrade to Org-9.7
  2024-06-11 10:47 ` Ihor Radchenko
@ 2024-06-11 15:06   ` Lin Sun
  2024-06-30  5:34     ` Stefan Kangas
  0 siblings, 1 reply; 6+ messages in thread
From: Lin Sun @ 2024-06-11 15:06 UTC (permalink / raw)
  To: Ihor Radchenko; +Cc: 71484

On Tue, Jun 11, 2024 at 10:45 AM Ihor Radchenko <yantar92@posteo.net> wrote:
>
> Lin Sun <sunlin7.mail@gmail.com> writes:
>
> > $ touch  /tmp/a.png
> >
> > $ echo '|[[file:a.png]]|' > /tmp/a.org
> >
> > $ emacs -q /tmp/a.org -eval '(org-toggle-inline-images)'
>
> Fixed, on bugfix.
> https://git.savannah.gnu.org/cgit/emacs/org-mode.git/commit/?id=3e4c89e55
>
> --
> Ihor Radchenko // yantar92,
> Org mode contributor,
> Learn more about Org mode at <https://orgmode.org/>.
> Support Org development at <https://liberapay.com/org-mode>,
> or support my work at <https://liberapay.com/yantar92>
Verified the commit fix the issue on my local.
Thanks, and please help close this ticket.





^ permalink raw reply	[flat|nested] 6+ messages in thread

* bug#71484: 30.0.50; An critical error after upgrade to Org-9.7
  2024-06-11 15:06   ` Lin Sun
@ 2024-06-30  5:34     ` Stefan Kangas
  0 siblings, 0 replies; 6+ messages in thread
From: Stefan Kangas @ 2024-06-30  5:34 UTC (permalink / raw)
  To: Lin Sun; +Cc: Ihor Radchenko, 71484-done

Lin Sun <sunlin7.mail@gmail.com> writes:

> On Tue, Jun 11, 2024 at 10:45 AM Ihor Radchenko <yantar92@posteo.net> wrote:
>>
>> Lin Sun <sunlin7.mail@gmail.com> writes:
>>
>> > $ touch  /tmp/a.png
>> >
>> > $ echo '|[[file:a.png]]|' > /tmp/a.org
>> >
>> > $ emacs -q /tmp/a.org -eval '(org-toggle-inline-images)'
>>
>> Fixed, on bugfix.
>> https://git.savannah.gnu.org/cgit/emacs/org-mode.git/commit/?id=3e4c89e55
>>
>> --
>> Ihor Radchenko // yantar92,
>> Org mode contributor,
>> Learn more about Org mode at <https://orgmode.org/>.
>> Support Org development at <https://liberapay.com/org-mode>,
>> or support my work at <https://liberapay.com/yantar92>
> Verified the commit fix the issue on my local.
> Thanks, and please help close this ticket.

Done.





^ permalink raw reply	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2024-06-30  5:34 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-06-10 17:25 bug#71484: 30.0.50; An critical error after upgrade to Org-9.7 Lin Sun
2024-06-10 20:08 ` Lin Sun
2024-06-11  3:42   ` Kyle Meyer
2024-06-11 10:47 ` Ihor Radchenko
2024-06-11 15:06   ` Lin Sun
2024-06-30  5:34     ` Stefan Kangas

Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/emacs.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).