whoops, bug

This commit is contained in:
wowaname 2016-08-09 07:02:57 +00:00
parent 8635ba1a54
commit 176037df62

View File

@ -16,11 +16,14 @@ Then in WeeChat:
=cut =cut
my %profs; my %profs;
my $desc = 0;
while (<>) { while (<>) {
$desc and print, next;
$_ !~ /^python\.embellish\./ and print, next; $_ !~ /^python\.embellish\./ and print, next;
s/^python\.embellish/python.colo/; s/^python\.embellish/python.colo/;
$_ !~ /^python\.colo\..*(?:pre|suf)/ and print, next; $_ !~ /^python\.colo\..*(?:pre|suf)/ and print, next;
$_ eq '[desc]' and ($desc = 1), print, next;
my ($prof, $k, $v) = /^python\.colo\.(.*)(pre|suf) = "(.*)"$/; my ($prof, $k, $v) = /^python\.colo\.(.*)(pre|suf) = "(.*)"$/;
$v =~ s/\x02/%b/g; $v =~ s/\x02/%b/g;