Skip to content

Commit

Permalink
use :: instead of / when displaying multiple choices
Browse files Browse the repository at this point in the history
  • Loading branch information
Kazuho Oku committed Oct 8, 2009
1 parent 93a1450 commit 0cdefb1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cppref
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ if (@cand == 0) {
open_file($cand[0]);
} else {
print STDERR "multiple choices:\n";
print map { s{$doc_dir/}{}; s{(/start|)\.html$}{}; " $_\n" } @cand;
print map { s{$doc_dir/}{}; s{(/start|)\.html$}{}; s{/}{::}g; " $_\n" } @cand;
exit 2;
}

Expand Down

0 comments on commit 0cdefb1

Please sign in to comment.