summaryrefslogtreecommitdiff
path: root/muttator
diff options
context:
space:
mode:
authorDoug Kearns <dougkearns@gmail.com>2009-08-25 20:33:35 +1000
committerDoug Kearns <dougkearns@gmail.com>2009-08-27 14:46:30 +1000
commitc9586163372a4afdb77816bdd6f6e80bbbf57634 (patch)
tree1f98282cf373038435197108f792efb6b5f90af9 /muttator
parent5f6405be03439666be470aeb3bcabef75814b621 (diff)
downloadpentadactyl-c9586163372a4afdb77816bdd6f6e80bbbf57634.tar.gz
Formatting fixes.
Diffstat (limited to 'muttator')
-rw-r--r--muttator/content/addressbook.js2
-rwxr-xr-xmuttator/content/mail.js2
2 files changed, 2 insertions, 2 deletions
diff --git a/muttator/content/addressbook.js b/muttator/content/addressbook.js
index fa50cd99..72eee604 100644
--- a/muttator/content/addressbook.js
+++ b/muttator/content/addressbook.js
@@ -196,7 +196,7 @@ function Addressbook() //{{{
else
{
let list = template.tabular(["Name", "Address"], [],
- [[util.clip(a[0], 50), address[1]] for ([,address] in Iterator(addresses))]
+ [[util.clip(a[0], 50), address[1]] for ([, address] in Iterator(addresses))]
);
commandline.echo(list, commandline.HL_NORMAL, commandline.FORCE_MULTILINE);
}
diff --git a/muttator/content/mail.js b/muttator/content/mail.js
index c510a43d..7769ca06 100755
--- a/muttator/content/mail.js
+++ b/muttator/content/mail.js
@@ -217,7 +217,7 @@ function Mail() //{{{
services.get("smtpService").defaultServer = server;
return value;
},
- completer: function (context) [[s.key, s.serverURI] for ([,s] in Iterator(mail.smtpServers))],
+ completer: function (context) [[s.key, s.serverURI] for ([, s] in Iterator(mail.smtpServers))],
validator: Option.validateCompleter
});