Add filename to the emacs proposed file.

This commit is contained in:
Bradley M. Kuhn 2013-11-30 14:49:37 -05:00
parent f1f3d31199
commit 0d08eb65f4

View file

@ -229,7 +229,7 @@ END_ICAL
my $summary = $entry->property("summary");
if (defined $summary) {
die("Multiple summary found in $veventFile") unless @{$summary} == 1;
$summary->[0]->value($modString . ": " . $summary->[0]->value);
$summary->[0]->value($modString . ": " . $summary->[0]->value . " (from $veventFile)");
}
$newCalendar->add_entry($entry);
}