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

Remove magic numbers

This commit is contained in:
Kris Maglione
2008-10-07 01:04:49 +00:00
parent 44de5ce668
commit 02dc21d930

View File

@@ -363,7 +363,7 @@ liberator.Completion = function () //{{{
top = [i, arg, [], [], [], []];
if (arg)
top[STATEMENTS].push(firstNonwhite());
last = top[1];
last = top[CHAR];
stack.push(top);
}
let pop = function (arg)
@@ -478,7 +478,7 @@ liberator.Completion = function () //{{{
}
/* Is this an object reference? */
if (top[3].length)
if (top[DOTS].length)
{
let dot = get(-1, 0, DOTS);
/*