summaryrefslogtreecommitdiff
path: root/common/content/io.js
diff options
context:
space:
mode:
authorDoug Kearns <dougkearns@gmail.com>2008-12-11 16:59:51 +1100
committerDoug Kearns <dougkearns@gmail.com>2008-12-12 14:03:31 +1100
commitf27c461c7fe65b85f08f61848535e6a895d03d16 (patch)
tree0a800da9521fa6566e4ec2a196669e89f207c0ea /common/content/io.js
parent8ad705334b1caaa3746b2148377b72c76047d4ed (diff)
downloadpentadactyl-f27c461c7fe65b85f08f61848535e6a895d03d16.tar.gz
replace some echo() calls with echomsg()
Diffstat (limited to 'common/content/io.js')
-rw-r--r--common/content/io.js6
1 files changed, 3 insertions, 3 deletions
diff --git a/common/content/io.js b/common/content/io.js
index 11ae8c47..a28d52b0 100644
--- a/common/content/io.js
+++ b/common/content/io.js
@@ -219,7 +219,7 @@ function IO() //{{{
if (isAbsolutePath(args))
{
if (io.setCurrentDirectory(args))
- liberator.echo(io.getCurrentDirectory().path);
+ liberator.echomsg(io.getCurrentDirectory().path);
}
else
{
@@ -233,7 +233,7 @@ function IO() //{{{
if (dir.exists() && dir.isDirectory() && dir.isReadable())
{
io.setCurrentDirectory(dir.path);
- liberator.echo(io.getCurrentDirectory().path);
+ liberator.echomsg(io.getCurrentDirectory().path);
found = true;
break;
}
@@ -260,7 +260,7 @@ function IO() //{{{
commands.add(["pw[d]"],
"Print the current directory name",
- function () { liberator.echo(io.getCurrentDirectory().path); },
+ function () { liberator.echomsg(io.getCurrentDirectory().path); },
{ argCount: "0" });
// "mkv[imperatorrc]" or "mkm[uttatorrc]"