org export async #3
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Problem
Org Export to LaTex Article is not working.
Estimation
For an async task another emacs session is executed to do the job. This async emacs session runs into a file not found error. At startup it uses the
emacs/initfile but cannot find the settings files, therefore(require '...)statements are not working. This means theearly_init.elis not loaded.Approch
initto loadearly_init.elif it is async called.Procedure
Org Export to LaTex Article
C-c C-e C-a l areturns following message in the*Message*buffer:In buffer
*Org Export Process*:fix for
initto loadearly-ini.elin4cb72a991a.New error (
*Org Export Process):looks like an issue of the package loading order.
the mentioned lines are inside a
(with-eval-after-load 'org ...)block inside of(use-package easymenu :config ...)easymenu is loaded, so is it org?
org is loaded with
(use-package org :defer t ...)It could be that the process does not invoke the org mode / package.
fixed by
7168c8204a