1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2025-12-23 10:18:00 +01:00

whitespace fixes

This commit is contained in:
Doug Kearns
2008-09-11 08:08:50 +00:00
parent 1e69a5f40c
commit 3113c26a86
2 changed files with 5 additions and 5 deletions

View File

@@ -54,14 +54,14 @@ liberator.CommandLine = function () //{{{
get length() this.store.length,
get: function(index) this.store.get(index),
get: function (index) this.store.get(index),
add: function (str)
{
if (!str)
return;
this.store.mutate('filter', function(line) line != str);
this.store.mutate('filter', function (line) line != str);
this.store.push(str);
this.store.truncate(liberator.options["history"], true);
}