3 #=======================================================================
7 # ©opyleft 2002– Øyvind A. Holm <sunny@sunbase.org>
8 # License: GNU General Public License, see end of file for legal stuff.
9 #=======================================================================
16 our ($VERSION, @ISA, @EXPORT, @EXPORT_OK, %EXPORT_TAGS);
19 push(@main::version_array
, $rcs_id);
20 $VERSION = ($rcs_id =~ / (\d+) /, $1);
29 # Print a debugging message {{{
30 $main::Debug
|| return;
31 my @call_info = caller;
32 chomp(my $Txt = shift);
33 my $File = $call_info[1];
35 $File =~ s
#^.*/(.*?)$#$1#;
36 print(STDERR
"$File:$call_info[2] $$ $Txt\n");