1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2025-01-16 17:19:41 +00:00
emacs/test/indent/js-indent-init-t.js
Paul Eggert 2a1be9eb23 Prefer "initialize" to "initialise"
* lisp/progmodes/js.el (js-indent-first-init):
Rename from js-indent-first-initialiser, to avoid worrying about
American vs British spelling.  All uses changed.
* test/indent/js-indent-init-t.js: Rename from
indent/js-indent-first-initialiser-t.js.
* test/indent/js-indent-init-dynamic.js: Rename from
test/indent/js-indent-first-initialiser-dynamic.js.
2015-03-10 16:29:59 -07:00

22 lines
302 B
JavaScript

var foo = function() {
return 7;
};
var foo = function() {
return 7;
},
bar = 8;
var foo = function() {
return 7;
},
bar = function() {
return 8;
};
// Local Variables:
// indent-tabs-mode: nil
// js-indent-level: 2
// js-indent-first-init: t
// End: