1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2026-04-10 17:43:32 +02:00

[muttator] fix :contacts

This commit is contained in:
Martin Stubenschrott
2009-10-13 00:18:21 +02:00
parent 42a6de01f7
commit 0b99b8dd51

View File

@@ -172,7 +172,7 @@ function Addressbook() //{{{
else else
{ {
let list = template.tabular(["Name", "Address"], [], let list = template.tabular(["Name", "Address"], [],
[[util.clip(a[0], 50), address[1]] for ([, address] in Iterator(addresses))] [[util.clip(address[0], 50), address[1]] for ([, address] in Iterator(addresses))]
); );
commandline.echo(list, commandline.HL_NORMAL, commandline.FORCE_MULTILINE); commandline.echo(list, commandline.HL_NORMAL, commandline.FORCE_MULTILINE);
} }