Skip to content

Commit

Permalink
Removed =for ref Internal pod directives
Browse files Browse the repository at this point in the history
The pod directive =for ref Internal shows up in many places in
Graphics/PGPLOT/Window/Window.pm, but it does not serve much of a
purpose. It probably served a useful purpose at some point, but
that purpose has been lost. Removing for now, with the expectation
of revisiting after devising a better pdldoc keyword system.
  • Loading branch information
run4flat committed Jan 8, 2013
1 parent 97e1f6f commit 2fa430e
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 13 deletions.
1 change: 1 addition & 0 deletions Doc/Doc.pm
Expand Up @@ -484,6 +484,7 @@ sub savedb {
open OUT, ">$this->{Outfile}" or barf "can't write to symdb $this->{Outfile}";
binmode OUT;
while (my ($key,$val) = each %$hash) {
next if 0 == scalar(%$val);
my $txt = "$key".chr(0).join(chr(0),%$val);
print OUT pack("S",length($txt)).$txt;
}
Expand Down
13 changes: 0 additions & 13 deletions Graphics/PGPLOT/Window/Window.pm
Expand Up @@ -739,8 +739,6 @@ where C<$win> is a PDL::Graphics::PGPLOT::Window object. That is all.
=head2 Window control functions.
=for ref Internal
=head2 pgwin
=for ref
Expand Down Expand Up @@ -975,8 +973,6 @@ working with several panels.
=head2 Plotting functions
=for ref Internal
=head2 env
=for ref
Expand Down Expand Up @@ -2058,9 +2054,6 @@ Note that C<$x> and C<$y> must be the same size (>1D is OK, though meaningless a
=head2 Text routines
=for ref Internal
=head2 text
=for ref
Expand Down Expand Up @@ -2186,8 +2179,6 @@ is desired. You can also use the synonyms C<Bg> and C<BackgroundColor>.
=head2 Cursor routines
=for ref Internal
=head2 cursor
=for ref
Expand Down Expand Up @@ -2248,8 +2239,6 @@ To select a region of the X-axis:
=head2 Internal routines
=for ref Internal
=cut


Expand Down Expand Up @@ -2311,8 +2300,6 @@ $PDL::Graphics::PGPLOT::RECORDING = 0; # By default recording is off..

=head2 signal_catcher, catch_signals, release_signals
=for ref Internal PDL/PGPLOT signal handlers
To prevent pgplot from doing a fandango on core, we have to block interrupts
during PGPLOT calls. Specifically, INT needs to get caught. These internal
routines provide a mechanism for that.
Expand Down

0 comments on commit 2fa430e

Please sign in to comment.