diff options
author | Tom Feist <shabble@cowu.be> | 2010-07-22 15:14:00 +0000 |
---|---|---|
committer | Tom Feist <shabble@cowu.be> | 2010-07-22 15:14:00 +0000 |
commit | 7f6988902700bfa9108b948b364f2f8f15fbbd55 (patch) | |
tree | e181299a72a8db03936a8ec95b9750feb5a04c97 /docs/parse_xsfuncs.pl | |
parent | added messagelevel docs to irssi.pod, more stuff in guide, and a little scrip... (diff) | |
download | irssi-scripts-7f6988902700bfa9108b948b364f2f8f15fbbd55.tar.gz irssi-scripts-7f6988902700bfa9108b948b364f2f8f15fbbd55.zip |
added additional packages and full function dumps to pod, unformatted so far
Diffstat (limited to '')
-rwxr-xr-x | docs/parse_xsfuncs.pl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/parse_xsfuncs.pl b/docs/parse_xsfuncs.pl index 4ce196f..2a97516 100755 --- a/docs/parse_xsfuncs.pl +++ b/docs/parse_xsfuncs.pl @@ -39,8 +39,8 @@ sub process_file { foreach my $sub (@$subs) { my $sub_name = $sub->{symname}; next if $sub_name =~ m/::$/; - print_msglevel($sub_name); - #print $sub->{symname}, $/; + #print_msglevel($sub_name); + print $sub->{symname}, $/; } } } |