milkbone57 22 years ago
parent
commit
0ff6affed2
  1. 5
      plugins/Tk-GUI/Tk/BrowseEdit.pm

5
plugins/Tk-GUI/Tk/BrowseEdit.pm

@ -202,7 +202,7 @@ sub to_html
$end ||= 'end'; $end ||= 'end';
my ($res, $temp); my ($res, $temp);
my $pos = '1.0'; my $pos = '0.0';
my $chars = 0; my $chars = 0;
my ($curtag, $prevtag) = ("", ""); my ($curtag, $prevtag) = ("", "");
my %all_tags; my %all_tags;
@ -217,8 +217,8 @@ sub to_html
if(scalar(keys %all_tags) == 0 && $prevtag eq "") if(scalar(keys %all_tags) == 0 && $prevtag eq "")
{ {
$pos = $self->{text}->index('0.0 + ' . ++$chars . " chars");
$res .= $self->{text}->get($pos); $res .= $self->{text}->get($pos);
$pos = $self->{text}->index('0.0 + ' . ++$chars . " chars");
$prevtag = ""; $prevtag = "";
next; next;
} }
@ -249,6 +249,7 @@ sub to_html
$res =~ s/$chr//g; $res =~ s/$chr//g;
return $res; return $res;
} }
sub end_tag sub end_tag
{ {
my ($tag) = @_; my ($tag) = @_;

Loading…
Cancel
Save