emacs-orgmode@gnu.org archives
 help / color / mirror / code / Atom feed
* Slowdowns and hangs when loading org from elpa
@ 2024-06-05  9:58 Pedro Andres Aranda Gutierrez
  2024-06-05 15:01 ` Ihor Radchenko
  0 siblings, 1 reply; 3+ messages in thread
From: Pedro Andres Aranda Gutierrez @ 2024-06-05  9:58 UTC (permalink / raw)
  To: Org Mode List

[-- Attachment #1: Type: text/plain, Size: 3062 bytes --]

Hi,

Background: the origin for bug #71356 was that I was trying to get org
installed from elpa, which apparently didn't work and Emacs (master) took
the bundled mode instead.

Observation: loading org from elpa with M-x p-l-p leads to errors and
emacs(master) freezing for a long time. When looking at the *Warnings*
buffer, I see:

Warning (comp): org-clock.el:2635:23: Warning: the function
‘org-add-archive-files’ is not known to be defined.
⛔ Warning (comp): org-clock.el:962:40: Warning: the function
‘org-element-at-point’ is not known to be defined.
⛔ Warning (comp): org-clock.el:753:30: Warning: the function
‘org-duration-from-minutes’ is not known to be defined.
⛔ Warning (comp): org-clock.el:751:36: Warning: the function
‘org-duration-to-minutes’ is not known to be defined.
⛔ Warning (comp): org-attach.el:759:20: Warning: the function
‘org-element-context’ is not known to be defined.
⛔ Warning (comp): org-agenda.el:10271:6: Warning: the function
‘org-clock-cancel’ is not known to be defined.
⛔ Warning (comp): org-agenda.el:10258:11: Warning: the function
‘org-clock-out’ is not known to be defined.
⛔ Warning (comp): org-agenda.el:10229:8: Warning: the function
‘org-clock-in’ is not known to be defined.
⛔ Warning (comp): org-agenda.el:6242:23: Warning: the function
‘org-duration-from-minutes’ is not known to be defined.
⛔ Warning (comp): org-agenda.el:5684:61: Warning: the function
‘org-duration-to-minutes’ is not known to be defined.
⛔ Warning (comp): org-agenda.el:4564:30: Warning: the function
‘org-clock-get-clocktable’ is not known to be defined.
⛔ Warning (comp): org-agenda.el:2541:51: Warning: the function
‘org-mobile-push’ is not known to be defined.
⛔ Warning (comp): org-agenda.el:2540:51: Warning: the function
‘org-mobile-pull’ is not known to be defined.
⛔ Warning (comp): org-agenda.el:2538:47: Warning: the function
‘org-timer-stop’ is not known to be defined.
⛔ Warning (comp): org-agenda.el:2537:39: Warning: the function
‘org-timer-set-timer’ is not known to be defined.
⛔ Warning (comp): org-agenda.el:2512:50: Warning: the function
‘org-clock-goto’ is not known to be defined.
⛔ Warning (comp): org-agenda.el:2494:46: Warning: the function ‘org-attach’
is not known to be defined.
⛔ Warning (comp): org-id.el:736:16: Warning: the function
‘org-element-cache-reset’ is not known to be defined.
⛔ Warning (comp): org-id.el:577:33: Warning: the function
‘org-element-at-point’ is not known to be defined.

I do have native compilation enabled on my Emacs on Linux

I don't know if there are other people experiencing issues like this... but
I think we need to investigate this

Best, /PA
-- 
Fragen sind nicht da, um beantwortet zu werden,
Fragen sind da um gestellt zu werden
Georg Kreisler

Headaches with a Juju log:
unit-basic-16: 09:17:36 WARNING juju.worker.uniter.operation we should run
a leader-deposed hook here, but we can't yet

[-- Attachment #2: Type: text/html, Size: 3484 bytes --]

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

* Re: Slowdowns and hangs when loading org from elpa
  2024-06-05  9:58 Slowdowns and hangs when loading org from elpa Pedro Andres Aranda Gutierrez
@ 2024-06-05 15:01 ` Ihor Radchenko
  2024-06-06  5:55   ` Pedro Andres Aranda Gutierrez
  0 siblings, 1 reply; 3+ messages in thread
From: Ihor Radchenko @ 2024-06-05 15:01 UTC (permalink / raw)
  To: Pedro Andres Aranda Gutierrez; +Cc: Org Mode List

Pedro Andres Aranda Gutierrez <paaguti@gmail.com> writes:

> Background: the origin for bug #71356 was that I was trying to get org
> installed from elpa, which apparently didn't work and Emacs (master) took
> the bundled mode instead.
>
> Observation: loading org from elpa with M-x p-l-p leads to errors and
> emacs(master) freezing for a long time. When looking at the *Warnings*
> buffer, I see:
>
> Warning (comp): org-clock.el:2635:23: Warning: the function
> ‘org-add-archive-files’ is not known to be defined.
> ⛔ Warning (comp): org-clock.el:962:40: Warning: the function
> ‘org-element-at-point’ is not known to be defined.

I am on Emacs master 2b7056 (CommitDate: Sat Jun 1 15:41:54 2024 +0800)

I am unable to reproduce doing the following:

1. Clear elpa dir
2. emacs -Q
3. M-x package-list-packages
4. Click on "org"
5. Install the version from Elpa
6. Open an Org file
7. Observe native compilation finishing without warnings

Your commit is slightly newer - 2024-06-02 22:33:54 -0700

-- 
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] 3+ messages in thread

* Re: Slowdowns and hangs when loading org from elpa
  2024-06-05 15:01 ` Ihor Radchenko
@ 2024-06-06  5:55   ` Pedro Andres Aranda Gutierrez
  0 siblings, 0 replies; 3+ messages in thread
From: Pedro Andres Aranda Gutierrez @ 2024-06-06  5:55 UTC (permalink / raw)
  To: Ihor Radchenko; +Cc: Org Mode List

[-- Attachment #1: Type: text/plain, Size: 1818 bytes --]

On Wed, 5 Jun 2024 at 17:00, Ihor Radchenko <yantar92@posteo.net> wrote:

> Pedro Andres Aranda Gutierrez <paaguti@gmail.com> writes:
>
> > Background: the origin for bug #71356 was that I was trying to get org
> > installed from elpa, which apparently didn't work and Emacs (master) took
> > the bundled mode instead.
> >
> > Observation: loading org from elpa with M-x p-l-p leads to errors and
> > emacs(master) freezing for a long time. When looking at the *Warnings*
> > buffer, I see:
> >
> > Warning (comp): org-clock.el:2635:23: Warning: the function
> > ‘org-add-archive-files’ is not known to be defined.
> > ⛔ Warning (comp): org-clock.el:962:40: Warning: the function
> > ‘org-element-at-point’ is not known to be defined.
>
> I am on Emacs master 2b7056 (CommitDate: Sat Jun 1 15:41:54 2024 +0800)
>
> I am unable to reproduce doing the following:
>
> 1. Clear elpa dir
> 2. emacs -Q
> 3. M-x package-list-packages
> 4. Click on "org"
> 5. Install the version from Elpa
> 6. Open an Org file
> 7. Observe native compilation finishing without warnings
>
> Your commit is slightly newer - 2024-06-02 22:33:54 -0700
>
> I know, I recompile master every now and then, so I'll keep updating on
the situation.
Vaeat: This post may become a blog ;-)

> --
> 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>
>
Best, /PA

-- 
Fragen sind nicht da, um beantwortet zu werden,
Fragen sind da um gestellt zu werden
Georg Kreisler

Headaches with a Juju log:
unit-basic-16: 09:17:36 WARNING juju.worker.uniter.operation we should run
a leader-deposed hook here, but we can't yet

[-- Attachment #2: Type: text/html, Size: 2955 bytes --]

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

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

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-06-05  9:58 Slowdowns and hangs when loading org from elpa Pedro Andres Aranda Gutierrez
2024-06-05 15:01 ` Ihor Radchenko
2024-06-06  5:55   ` Pedro Andres Aranda Gutierrez

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

	https://git.savannah.gnu.org/cgit/emacs/org-mode.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).