all messages for Emacs-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
From: Nicolas Goaziou <n.goaziou@gmail.com>
To: Nick Dokos <ndokos@gmail.com>
Cc: emacs-orgmode@gnu.org
Subject: Re: bug#15888: 24.3.50; Eval-after-load eval'ed twice
Date: Sat, 23 Nov 2013 15:05:29 +0100	[thread overview]
Message-ID: <87iovj6wnq.fsf@gmail.com> (raw)
In-Reply-To: <87txf71zv9.fsf@gmail.com> (Nick Dokos's message of "Tue, 19 Nov 2013 23:06:02 -0500")

Hello,

Nick Dokos <ndokos@gmail.com> writes:

> Well, Nicolas warned us that we are not out of the woods yet. I repeated
> the previous exercise, this time with the following file:
>
> (add-to-list 'load-path (expand-file-name "~/src/emacs/org/org-mode/lisp"))
> (add-to-list 'load-path (expand-file-name "~/src/emacs/org/org-mode/contrib/lisp"))
>
> (add-to-list 'auto-mode-alist '("\\.\\(org\\|org_archive\\|txt\\)$" . org-mode))
>
> (require 'org-loaddefs)
>
> (with-eval-after-load "ob-lob"
>   ;; load some code blocks into the library of Babel
>   (let ((lob-file (concat (file-name-directory (locate-library "org"))
>                           "../doc/library-of-babel.org")))
>     (when (file-exists-p lob-file)
>       (org-babel-lob-ingest lob-file))))
>
> (defun foobar ()
>   (message "LOADED") (sit-for 3) (message ""))
>
> (setq org-load-hook (function foobar))
>
> started emacs with
>
>   emacs -Q -l ./double-load.el
>
> edebugged foobar and C-x C-f foo.org. It stopped at foobar twice
> and I got the following backtraces at the two stopping points.
>
> The first backtrace looks like this:
>
>   foobar()
>   run-hooks(org-load-hook)
>   eval-buffer(#<buffer  *load*-648596> nil "/home/nick/src/emacs/org/org-mode/lisp/org.el" nil t)
>   load-with-code-conversion("/home/nick/src/emacs/org/org-mode/lisp/org.el" "/home/nick/src/emacs/org/org-mode/lisp/org.el" nil t)
>   org-mode()
>   set-auto-mode-0(org-mode nil)
>   set-auto-mode()
>   normal-mode(t)
>   after-find-file(nil t)
>   find-file-noselect-1(#<buffer library-of-babel.org> "~/src/emacs/org/org-mode/doc/library-of-babel.org" nil nil "~/src/emacs/org/org-mode/doc/library-of-babel.org" (16393680 2097))
>   find-file-noselect("/home/nick/src/emacs/org/org-mode/lisp/../doc/library-of-babel.org" nil nil nil)
>   find-file("/home/nick/src/emacs/org/org-mode/lisp/../doc/library-of-babel.org")

The code in "double-load.el" calls `org-babel-lob-ingest' as soon as
"ob-lob.el" is loaded. The problem is that:

  1. `org-babel-lob-ingest' needs to open an Org file (and therefore
     call `org-mode' in its buffer);
  2. `ob-lob' is required before `org' is provided.

Therefore, org.el is read twice and hook run as many times.

A straightforward solution is to call apply `eval-after-load' on `org'
instead of `ob-lob', since Org will eventually load Babel anyway.

Eric may have a better solution, though.


Regards,

-- 
Nicolas Goaziou

  reply	other threads:[~2013-11-23 14:05 UTC|newest]

Thread overview: 56+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2013-11-13 21:27 bug#15888: 24.3.50; Eval-after-load eval'ed twice Sebastien Vauban
2013-11-13 22:08 ` Glenn Morris
2013-11-13 22:14   ` Glenn Morris
2013-11-13 22:18 ` Glenn Morris
     [not found] ` <mailman.6013.1384380609.10748.bug-gnu-emacs@gnu.org>
     [not found]   ` <mailman.6013.1384380609.10748.bug-gnu-emacs-mXXj517/zsQ@public.gmane.org>
2013-11-13 23:33     ` Sebastien Vauban
2013-11-14  3:08       ` Glenn Morris
     [not found]       ` <mailman.6027.1384398545.10748.bug-gnu-emacs@gnu.org>
     [not found]         ` <868uws6lgt.fsf-oHC15RC7JGTNLxjTenLetw@public.gmane.org>
2013-11-14 18:57           ` Sebastien Vauban
2013-11-14 19:12             ` Eli Zaretskii
     [not found]               ` <83siuyiyq4.fsf-mXXj517/zsQ@public.gmane.org>
2013-11-15  8:16                 ` Sebastien Vauban
2013-11-15  8:42                   ` Eli Zaretskii
     [not found]                     ` <83iovuhx8w.fsf-mXXj517/zsQ@public.gmane.org>
2013-11-15  9:06                       ` Sebastien Vauban
2013-11-15  9:06                       ` Sebastien Vauban
2013-11-15 10:34                         ` Eli Zaretskii
2013-11-15 10:34                         ` Eli Zaretskii
     [not found]                         ` <mailman.6245.1384511726.10748.bug-gnu-emacs@gnu.org>
     [not found]                           ` <mailman.6245.1384511726.10748.bug-gnu-emacs-mXXj517/zsQ@public.gmane.org>
2013-11-15 13:01                             ` Sebastien Vauban
2013-11-15 14:15                               ` Stefan Monnier
     [not found]                                 ` <jwvbo1l4utn.fsf-monnier+emacsbugs-mXXj517/zsQ@public.gmane.org>
2013-11-15 14:27                                   ` Sebastien Vauban
2013-11-15 14:27                                   ` Sebastien Vauban
2013-11-15 14:15                               ` Stefan Monnier
2013-11-15 14:35                               ` Eli Zaretskii
2013-11-15 14:35                               ` Eli Zaretskii
2013-11-15 13:01                             ` Sebastien Vauban
2013-11-15  8:42                   ` Eli Zaretskii
2013-11-15  8:16                 ` Sebastien Vauban
2013-11-14 22:01             ` Glenn Morris
2013-11-15  6:04               ` Bastien
2013-11-15  6:04               ` Bastien
     [not found]                 ` <87y54qdwvh.fsf-E3UqQZAQFPqWIDz0JBNUog@public.gmane.org>
2013-11-15  8:33                   ` Sebastien Vauban
2013-11-15  8:33                   ` Sebastien Vauban
2013-11-14 22:01             ` Glenn Morris
2013-11-19 20:05           ` Sebastien Vauban
2013-11-20  4:06             ` Nick Dokos
2013-11-23 14:05               ` Nicolas Goaziou [this message]
2013-12-04 20:48                 ` Sebastien Vauban
2013-12-04 21:35                   ` Nicolas Goaziou
2020-05-22 12:51                     ` Bastien
2013-11-19 20:05           ` Sebastien Vauban
2013-11-14  2:13 ` Michael Heerdegen
2013-11-15  0:06 ` Josh
2013-11-15  2:30   ` Glenn Morris
     [not found]     ` <oofvqygzwk.fsf-iW7gFb+/I3LZHJUXO5efmti2O/JbrIOy@public.gmane.org>
2013-11-15  6:04       ` Sebastien Vauban
2013-11-15  6:04       ` Sebastien Vauban
2013-11-15 17:02         ` Glenn Morris
2013-11-15 17:57           ` Nick Dokos
2013-11-15 18:31             ` Nicolas Goaziou
2013-11-17  1:23               ` Nick Dokos
2013-11-17  3:06               ` Nick Dokos
2013-11-17  8:59                 ` Nicolas Goaziou
2013-11-17 13:41                   ` Nick Dokos
2013-11-17 18:05                     ` Nick Dokos
2013-11-15 17:02         ` Glenn Morris
2013-11-17 19:45           ` Glenn Morris
2013-11-17 19:45           ` Glenn Morris
2013-11-15  2:30   ` Glenn Morris
2013-11-15  0:06 ` Josh
2013-11-19 20:07   ` Sebastien Vauban

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=87iovj6wnq.fsf@gmail.com \
    --to=n.goaziou@gmail.com \
    --cc=emacs-orgmode@gnu.org \
    --cc=ndokos@gmail.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
Code repositories for project(s) associated with this external index

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

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.