@@ -107,7 +107,7 @@ Returns a hash:
107107=cut
108108
109109sub get_commit {
110- my (@base ) = qw( master next pu ) ;
110+ my (@base ) = qw( master next seen ) ;
111111 my $fh ;
112112 open ($fh , ' -|' ,
113113 qw( git for-each-ref) ,
@@ -182,7 +182,7 @@ sub get_commit {
182182 my $co = $commit {$sha1 };
183183 if (exists $co -> {' branch' }{' next' }) {
184184 $sign = ' +' ;
185- } elsif (exists $co -> {' branch' }{' pu ' }) {
185+ } elsif (exists $co -> {' branch' }{' seen ' }) {
186186 $sign = ' -' ;
187187 } else {
188188 $sign = ' .' ;
@@ -254,11 +254,11 @@ sub get_commit {
254254 # NEEDSWORK:
255255 # This is done a bit too early. We grabbed all
256256 # under refs/heads/??/* without caring if they are
257- # merged to 'pu ' yet, and it is correct because
257+ # merged to 'seen ' yet, and it is correct because
258258 # we want to describe a topic that is in the old
259- # edition that is tentatively kicked out of 'pu '.
259+ # edition that is tentatively kicked out of 'seen '.
260260 # However, we do not want to say a topic is used
261- # by a new topic that is not yet in 'pu '!
261+ # by a new topic that is not yet in 'seen '!
262262 my $relation = describe_relation($topic {$branch });
263263 $topic {$branch }{' desc' } = $head . $list ;
264264 if ($relation ) {
@@ -286,9 +286,9 @@ sub blurb_text {
286286 $next_at ||= ' 0' x 40 ;
287287 $text ||= <<'EOF' ;
288288Here are the topics that have been cooking. Commits prefixed with '-' are
289- only in 'pu ' (proposed updates) while commits prefixed with '+' are in 'next'.
290- The ones marked with '.' do not appear in any of the integration branches,
291- but I am still holding onto them.
289+ only in 'seen ' (formerly 'pu'--- proposed updates) while commits prefixed
290+ with '+' are in 'next'. The ones marked with '.' do not appear in any of
291+ the integration branches, but I am still holding onto them.
292292
293293You can find the changes described here in the integration branches of the
294294repositories listed at
@@ -546,7 +546,7 @@ sub update_issue {
546546 return $incremental ;
547547}
548548
549- sub topic_in_pu {
549+ sub topic_in_seen {
550550 my ($topic_desc ) = @_ ;
551551 for my $line (split (/ \n / , $topic_desc )) {
552552 if ($line =~ / ^ [+-] / ) {
@@ -624,7 +624,7 @@ sub merge_cooking {
624624 for my $topic (sort keys %{$current }) {
625625 if (!exists $td -> {$topic }) {
626626 # Ignore new topics without anything merged
627- if (topic_in_pu ($current -> {$topic }{' desc' })) {
627+ if (topic_in_seen ($current -> {$topic }{' desc' })) {
628628 push @new_topic , $topic ;
629629 }
630630 next ;
@@ -737,7 +737,7 @@ sub wildo {
737737 if (/ ^\* (\S +) \( ([-0-9]+)\) (\d +) commits?$ / ) {
738738 wildo_flush_topic($in_section , \%what , $topic );
739739
740- # tip-date, next-date, topic, count, pu -count
740+ # tip-date, next-date, topic, count, seen -count
741741 $topic = [$2 , $too_recent , $1 , $3 , 0];
742742 $in_desc = undef ;
743743 next ;
@@ -778,10 +778,10 @@ sub wildo {
778778 for $topic (sort { (($a -> [1] cmp $b -> [1]) ||
779779 ($a -> [0] cmp $b -> [0])) }
780780 @{$what {$what }}) {
781- my ($tip , $next , $name , $count , $pu ) = @$topic ;
781+ my ($tip , $next , $name , $count , $seen ) = @$topic ;
782782 my ($sign );
783783 $tip =~ s / ^\d {4}-// ;
784- if (($next eq $too_recent ) || (0 < $pu )) {
784+ if (($next eq $too_recent ) || (0 < $seen )) {
785785 $sign = " -" ;
786786 $next = " " x 6 ;
787787 } else {
0 commit comments