diff options
Diffstat (limited to '')
-rw-r--r-- | docs/Irssi.pod | 4 | ||||
-rwxr-xr-x | docs/buildpod.pl | 2 |
2 files changed, 4 insertions, 2 deletions
diff --git a/docs/Irssi.pod b/docs/Irssi.pod index f5d72b7..aa85e6d 100644 --- a/docs/Irssi.pod +++ b/docs/Irssi.pod @@ -262,7 +262,9 @@ all other signal handlers). =head4 C<signal_remove $sig_name, $func> Unbind C<$sig_name> from function C<$func>. -B<TODO: Can you unbind a signal from a C<sub { ...}> coderef? What happens?> + +B<Note: Only stringified function names can be removed using this function. A +signal handler added via C<CODEREF> cannot be removed.> =head3 Controlling Signal Propagation diff --git a/docs/buildpod.pl b/docs/buildpod.pl index e683185..debaa3b 100755 --- a/docs/buildpod.pl +++ b/docs/buildpod.pl @@ -90,7 +90,7 @@ package main; use File::Copy; -my $output_dir = "../../tmp/irssi/docs/"; +my $output_dir = "../../tmp/irssi-scripts/docs/"; my $batchconv = Pod::Simple::HTMLBatch::Custom->new; my $css = 'podstyle.css'; |