~ubuntu-branches/ubuntu/gutsy/gnome-doc-utils/gutsy

« back to all changes in this revision

Viewing changes to intltool-extract.in

  • Committer: Bazaar Package Importer
  • Author(s): Sebastien Bacher
  • Date: 2006-03-11 15:49:45 UTC
  • mfrom: (1.1.7 upstream)
  • Revision ID: james.westby@ubuntu.com-20060311154945-72pfmb37jp15o778
Tags: 0.6.0-1build1
Fake sync with Debian

Show diffs side-by-side

added added

removed removed

Lines of Context:
32
32
## Release information
33
33
my $PROGRAM      = "intltool-extract";
34
34
my $PACKAGE      = "intltool";
35
 
my $VERSION      = "0.34.1";
 
35
my $VERSION      = "0.34.2";
36
36
 
37
37
## Loaded modules
38
38
use strict; 
485
485
sub intltool_tree_comment
486
486
{
487
487
    my $expat = shift;
488
 
    my $data  = shift;
 
488
    my $data  = $expat->original_string();
489
489
    my $clist = $expat->{Curlist};
490
490
    my $pos   = $#$clist;
491
491
 
 
492
    $data =~ s/^<!--//s;
 
493
    $data =~ s/-->$//s;
492
494
    push @$clist, 1 => $data;
493
495
}
494
496