From 6061f17e5324cd123bb7f49d5d262bb02cfa72f0 Mon Sep 17 00:00:00 2001 From: Thierry Vignaud Date: Fri, 8 Feb 2008 15:58:37 +0000 Subject: (format_changelog_string) make a real function out of a closure --- Rpmdrake/formatting.pm | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'Rpmdrake/formatting.pm') diff --git a/Rpmdrake/formatting.pm b/Rpmdrake/formatting.pm index 911819f9..3b987c67 100644 --- a/Rpmdrake/formatting.pm +++ b/Rpmdrake/formatting.pm @@ -34,6 +34,8 @@ use ugtk2 qw(escape_text_for_TextView_markup_format); use Exporter; our @ISA = qw(Exporter); our @EXPORT = qw( + $spacing + format_changelog_string format_field format_header format_name_n_summary @@ -93,6 +95,12 @@ sub pkg2medium { #- encodings; but if a user has a so broken setup we can't do much anyway sub localtime2changelog { to_utf8(POSIX::strftime("%c", localtime($_[0]))) } +our $spacing = " "; +sub format_changelog_string { + #- preprocess changelog for faster TextView insert reaction + [ map { [ "$spacing$_\n", if_(/^\*/, { 'weight' => Gtk2::Pango->PANGO_WEIGHT_BOLD }) ] } split("\n", $_[0]) ]; +} + sub format_update_field { my ($name) = @_; '' . eval { escape_text_for_TextView_markup_format($name) } . ''; -- cgit v1.2.1