[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: How to tell which *.el file loaded?
From: |
Kai Grossjohann |
Subject: |
Re: How to tell which *.el file loaded? |
Date: |
Wed, 26 May 2004 11:43:16 +0200 |
User-agent: |
Gnus/5.110003 (No Gnus v0.3) Emacs/21.3.50 (gnu/linux) |
bill <please_post@nomail.edu> writes:
> Is there a simple way to confirm which of several possible foo.el
> files in the system was loaded by (require 'foo) ? (I'm thinking
> along the lines of something I can stick in the desired foo.el that
> will confirm to me that it was it that was loaded by (require 'foo)
> .)
(message "Hi, I'm here.")
(sleep-for 3) ; 3 seconds
Please note that Emacs will load the *.elc file, if it exists. That
is, you may wish to re-byte-compile your foo.el, if it was
byte-compiled before.
Kai