mirror of
https://github.com/gryf/pentadactyl-pm.git
synced 2025-12-23 20:32:25 +01:00
Remove magic numbers
This commit is contained in:
@@ -363,7 +363,7 @@ liberator.Completion = function () //{{{
|
|||||||
top = [i, arg, [], [], [], []];
|
top = [i, arg, [], [], [], []];
|
||||||
if (arg)
|
if (arg)
|
||||||
top[STATEMENTS].push(firstNonwhite());
|
top[STATEMENTS].push(firstNonwhite());
|
||||||
last = top[1];
|
last = top[CHAR];
|
||||||
stack.push(top);
|
stack.push(top);
|
||||||
}
|
}
|
||||||
let pop = function (arg)
|
let pop = function (arg)
|
||||||
@@ -478,7 +478,7 @@ liberator.Completion = function () //{{{
|
|||||||
}
|
}
|
||||||
|
|
||||||
/* Is this an object reference? */
|
/* Is this an object reference? */
|
||||||
if (top[3].length)
|
if (top[DOTS].length)
|
||||||
{
|
{
|
||||||
let dot = get(-1, 0, DOTS);
|
let dot = get(-1, 0, DOTS);
|
||||||
/*
|
/*
|
||||||
|
|||||||
Reference in New Issue
Block a user