mirror of
https://git.savannah.gnu.org/git/emacs.git
synced 2025-01-16 17:19:41 +00:00
2a1be9eb23
* 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.
22 lines
302 B
JavaScript
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:
|