[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[6234] Plaintext.pm some method call changes
From: |
Gavin D. Smith |
Subject: |
[6234] Plaintext.pm some method call changes |
Date: |
Fri, 01 May 2015 12:34:56 +0000 |
Revision: 6234
http://svn.sv.gnu.org/viewvc/?view=rev&root=texinfo&revision=6234
Author: gavin
Date: 2015-05-01 12:34:52 +0000 (Fri, 01 May 2015)
Log Message:
-----------
Plaintext.pm some method call changes
Modified Paths:
--------------
trunk/ChangeLog
trunk/tp/Texinfo/Convert/Plaintext.pm
Modified: trunk/ChangeLog
===================================================================
--- trunk/ChangeLog 2015-04-30 18:58:01 UTC (rev 6233)
+++ trunk/ChangeLog 2015-05-01 12:34:52 UTC (rev 6234)
@@ -1,3 +1,10 @@
+2015-05-01 Gavin Smith <address@hidden>
+
+ * tp/Texinfo/Plaintext.pm: Change a few more function calls not
+ to use method call syntax.
+ (convert, _convert_element): Use method call syntax to call
+ _footnotes. (Mail from Patrice.)
+
2015-04-30 Gavin Smith <address@hidden>
* tp/Texinfo/Parser.pm, tp/Texinfo/Convert/Paragraph.pm,
Modified: trunk/tp/Texinfo/Convert/Plaintext.pm
===================================================================
--- trunk/tp/Texinfo/Convert/Plaintext.pm 2015-04-30 18:58:01 UTC (rev
6233)
+++ trunk/tp/Texinfo/Convert/Plaintext.pm 2015-05-01 12:34:52 UTC (rev
6234)
@@ -466,7 +466,7 @@
print STDERR "END NODE
($self->{'count_context'}->[-1]->{'lines'},$self->{'count_context'}->[-1]->{'bytes'})\n"
if ($self->{'debug'});
- $result .= _footnotes($self, $element);
+ $result .= $self->_footnotes($element);
$self->_count_context_bug_message('footnotes ', $element);
@@ -487,7 +487,7 @@
if (!defined($elements)) {
$result = $self->_convert($root);
$self->_count_context_bug_message('no element ');
- my $footnotes = _footnotes($self);
+ my $footnotes = $self->_footnotes();
$self->_count_context_bug_message('no element footnotes ');
$result .= $footnotes;
} else {
@@ -1222,8 +1222,8 @@
my $heading = "* Menu:\n\n";
$result .= $heading;
- $self->_add_text_count($heading);
- $self->_add_lines_count(2);
+ _add_text_count($self, $heading);
+ _add_lines_count($self, 2);
# first determine the line numbers for the spacing of their formatting
my %line_nrs;
@@ -1352,7 +1352,7 @@
if ($line_width + $line_part_width +1 > $self->{'fillcolumn'}) {
$line_part = "\n" . ' ' x ($self->{'fillcolumn'} - $line_part_width)
. "$line_part\n";
- $self->_add_lines_count(1);
+ _add_lines_count($self, 1);
} else {
$line_part
= ' ' x ($self->{'fillcolumn'} - $line_part_width - $line_width)
@@ -1616,7 +1616,7 @@
} elsif ($root->{'type'} and ($root->{'type'} eq 'underlying_text')) {
$formatter->{'container'}->add_underlying_text($root->{'text'});
} else {
- my ($text, $lower_case_text) = $self->_process_text($root, $formatter);
+ my ($text, $lower_case_text) = _process_text($self, $root, $formatter);
$result = _count_added($self, $formatter->{'container'},
$formatter->{'container'}->add_text($text,
$lower_case_text));
}
@@ -2469,7 +2469,7 @@
_add_text_count($self, $heading_underlined);
$result .= $heading_underlined;
if ($heading_underlined ne '') {
- $self->_add_lines_count(2);
+ _add_lines_count($self, 2);
$result .= _add_newline_if_needed($self);
}
}
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- [6234] Plaintext.pm some method call changes,
Gavin D. Smith <=