diff options
author | Doug Kearns <dougkearns@gmail.com> | 2009-08-25 20:33:35 +1000 |
---|---|---|
committer | Doug Kearns <dougkearns@gmail.com> | 2009-08-27 14:46:30 +1000 |
commit | c9586163372a4afdb77816bdd6f6e80bbbf57634 (patch) | |
tree | 1f98282cf373038435197108f792efb6b5f90af9 /muttator | |
parent | 5f6405be03439666be470aeb3bcabef75814b621 (diff) | |
download | pentadactyl-c9586163372a4afdb77816bdd6f6e80bbbf57634.tar.gz |
Formatting fixes.
Diffstat (limited to 'muttator')
-rw-r--r-- | muttator/content/addressbook.js | 2 | ||||
-rwxr-xr-x | muttator/content/mail.js | 2 |
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 }); |