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

s/args.arguments/args/g

This commit is contained in:
Kris Maglione
2008-11-26 21:10:54 +00:00
parent a19f3d78ab
commit 20ab9ef0c7
12 changed files with 45 additions and 46 deletions

View File

@@ -532,7 +532,7 @@ function Buffer() //{{{
{
let doc = window.content.document;
let chosenData = null;
let filename = args.arguments[0];
let filename = args[0];
if (filename)
{
@@ -577,7 +577,7 @@ function Buffer() //{{{
commands.add(["vie[wsource]"],
"View source code of current document",
function (args, special) { buffer.viewSource(args.arguments[0], special); },
function (args, special) { buffer.viewSource(args[0], special); },
{
argCount: "?",
bang: true,
@@ -1523,7 +1523,7 @@ function Marks() //{{{
"Mark current location within the web page",
function (args)
{
var mark = args.arguments[0];
var mark = args[0];
if (mark.length > 1)
{
liberator.echoerr("E488: Trailing characters");