mirror of
https://github.com/gryf/pentadactyl-pm.git
synced 2025-12-23 13:22:28 +01:00
whitespace fixes
This commit is contained in:
@@ -693,8 +693,8 @@ liberator.Buffer = function () //{{{
|
||||
);
|
||||
|
||||
result.__iterator__ = asIterator
|
||||
? function() { let elem; while((elem = this.iterateNext())) yield elem }
|
||||
: function() { for(let i = 0; i < this.snapshotLength; i++) yield this.snapshotItem(i) };
|
||||
? function () { let elem; while ((elem = this.iterateNext())) yield elem; }
|
||||
: function () { for (let i = 0; i < this.snapshotLength; i++) yield this.snapshotItem(i); };
|
||||
|
||||
return result;
|
||||
},
|
||||
|
||||
@@ -246,7 +246,8 @@ liberator.modes = (function () //{{{
|
||||
this.set(mainMode, extendedMode, silent);
|
||||
},
|
||||
|
||||
pop: function() {
|
||||
pop: function ()
|
||||
{
|
||||
var a = modeStack.pop();
|
||||
if (a)
|
||||
[main, extended] = a;
|
||||
|
||||
Reference in New Issue
Block a user