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