« ^ »

Emacsの--loadと--scriptで指定したファイルはどちらが先に実行されるか?

所要時間: 約 1分

ちょっとわからなかったのでやってみた。備忘録として残しておく。

$ emacs --version
GNU Emacs 25.1.1
Copyright (C) 2016 Free Software Foundation, Inc.
GNU Emacs comes with ABSOLUTELY NO WARRANTY.
You may redistribute copies of GNU Emacs
under the terms of the GNU General Public License.
For more information about these matters, see the file named COPYING.

やったのはこんな感じ。

script.el::

(print (format "script: %s" (current-time)))

load.el::

(print (format "load: %s" (current-time)))

実行する。

$ emacs -nw -q -l load.el --script script.el

"script: (22780 20842 88910 0)"

"load: (22780 20842 90294 0)"

--script の方が先に読まれていそう。