We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5a349d0 commit d3cd72aCopy full SHA for d3cd72a
UWC
@@ -97,7 +97,7 @@ sub parse_whats_cooking {
97
next;
98
}
99
100
- if (/^ [-+.?] / || /^ \S/) {
+ if (/^ [-+.?*] / || /^ \S/) {
101
$topic->{"names"} .= $_;
102
103
@@ -151,8 +151,12 @@ sub merge_whats_cooking {
151
my $newtopic = delete $new_wc->{"topic hash"}{$name};
152
153
if (!defined $newtopic) {
154
+ $topic->{"text"} = ("<<deleted\n" .
155
+ $topic->{"head"} .
156
+ $topic->{"names"} .
157
+ ">>\n\n" .
158
+ $topic->{"text"});
159
$topic->{"names"} = "";
- $topic->{"text"} = "<<deleted>>";
160
161
162
if (($newtopic->{"names"} ne $topic->{"names"}) ||
0 commit comments