fix rcmd <call> sh/fdx problem
authorminima <minima>
Fri, 6 Jan 2006 22:37:55 +0000 (22:37 +0000)
committerminima <minima>
Fri, 6 Jan 2006 22:37:55 +0000 (22:37 +0000)
Changes
cmd/show/dx.pl
perl/DXCommandmode.pm

diff --git a/Changes b/Changes
index 158ab7aba350431d7984ba8fa956bc15ccbadb5f..ec2f81c4ac39f53aaaa8dc678e52dd44ab3cbfaa 100644 (file)
--- a/Changes
+++ b/Changes
@@ -1,3 +1,5 @@
+06Jan06=======================================================================
+1. Fix problem with rcmd <call> sh/fdx
 27Dec05=======================================================================
 1. put some more flesh on the SQL stuff (which may turn out to be a bit of a
 red herring as it doesn't appear to be significantly faster (for spots) than
index fd3adeb0c2a9e0520968f81c7c2a6e7b32436f56..31809a734c7158be99dda8f73835fcb0b22beaba 100644 (file)
@@ -373,7 +373,7 @@ foreach $ref (@res) {
                push @out, VE7CC::dx_spot($self, @$ref);
        } else {
                if ($real) {
-                       push @out, $self->format_dx_spot(@$ref);
+                       push @out, DXCommandmode::format_dx_spot($self, @$ref);
                } else {
                        push @out, Spot::formatl(@$ref);
                }
index 9b395c0cea691c70b543423c33dcf34509d48db6..04a1b2866e850daf066562cc469456f2f5a7fc4d 100644 (file)
@@ -432,7 +432,8 @@ sub run_cmd
        
 
        return () if length $cmdline == 0;
-               
+       
+       
        # split the command line up into parts, the first part is the command
        my ($cmd, $args) = split /\s+/, $cmdline, 2;
        $args = "" unless defined $args;