From 0d08eb65f45584a006e20680f3e5f20db17ddb4f Mon Sep 17 00:00:00 2001 From: "Bradley M. Kuhn" Date: Sat, 30 Nov 2013 14:49:37 -0500 Subject: [PATCH] Add filename to the emacs proposed file. --- calendar-import.plx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/calendar-import.plx b/calendar-import.plx index 65c0c8b..628e60f 100755 --- a/calendar-import.plx +++ b/calendar-import.plx @@ -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); }