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

Fix namespace clash

This commit is contained in:
Kris Maglione
2008-10-15 23:47:41 +00:00
parent 0a94b9fe71
commit a1003650ea
2 changed files with 2 additions and 2 deletions

View File

@@ -954,7 +954,7 @@ function Completion() //{{{
return [0, this.filter(res, filter)];
},
history: function history(filter) [0, history.get(filter)],
history: function _history(filter) [0, history.get(filter)],
get javascriptCompleter() javascript,

View File

@@ -784,7 +784,7 @@ function CommandLine() //{{{
else if (historyIndex >= inputHistory.length + 1)
{
historyIndex = inputHistory.length;
beep();
liberator.beep();
break;
}