projects
/
irspy-moved-to-github.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
abc5350
)
Towards index-preserving @conn winnowing.
author
Mike Taylor
<mike@indexdata.com>
Tue, 18 Jul 2006 13:45:36 +0000
(13:45 +0000)
committer
Mike Taylor
<mike@indexdata.com>
Tue, 18 Jul 2006 13:45:36 +0000
(13:45 +0000)
lib/ZOOM/Pod.pm
patch
|
blob
|
history
diff --git
a/lib/ZOOM/Pod.pm
b/lib/ZOOM/Pod.pm
index
d532b40
..
e338459
100644
(file)
--- a/
lib/ZOOM/Pod.pm
+++ b/
lib/ZOOM/Pod.pm
@@
-1,4
+1,4
@@
-# $Id: Pod.pm,v 1.14 2006-07-18 11:43:55 mike Exp $
+# $Id: Pod.pm,v 1.15 2006-07-18 13:45:36 mike Exp $
package ZOOM::Pod;
@@
-277,8
+277,9
@@
sub wait {
my $res = 0;
- my @conn;
- foreach my $conn (@{ $this->{conn} }) {
+ my(@conn, @imap);
+ foreach my $i (0 .. @{ $this->{conn} }-1) {
+ my $conn = $this->{conn}->[$i];
if (!$conn->option("pod_omit")) {
push @conn, $conn;
} else {