mirror of
https://github.com/gryf/pentadactyl-pm.git
synced 2026-02-20 23:15:46 +01:00
Normalise the use of "func" vs "fn" for function references.
"func" had the numbers.
This commit is contained in:
@@ -1039,13 +1039,13 @@ function CommandLine() //{{{
|
||||
});
|
||||
},
|
||||
|
||||
runSilently: function (fn, self)
|
||||
runSilently: function (func, self)
|
||||
{
|
||||
let wasSilent = this.silent;
|
||||
this.silent = true;
|
||||
try
|
||||
{
|
||||
fn.call(self);
|
||||
func.call(self);
|
||||
}
|
||||
finally
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user