elisp.js/elisp/init.js

27 lines
741 B
JavaScript

////
// Emacs Lisp implementation in JavaScript.
//
// Copyright (c) 2009 Sami Samhuri - sami.samhuri@gmail.com
//
// Released under the terms of the MIT license. See the included file
// LICENSE.
// Use initHook() to specify initialization routines at the very end
// of the file we call init when everything is defined, regardless of
// the order it appears in the file. The order of the hooks still
// matters though, it's not fool-proof.
var hooks = [];
exports.hook = function(name, hook) {
hooks.push({hook: hook, name: name});
};
exports.initialize = function() {
var i = 0,
n = hooks.length;
while (i < n) {
// print('**** INIT HOOK: ' + hooks[i].name + ' *****');
hooks[i++].hook.call();
}
};