ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/deliantra/server/ext/dm-support.ext
(Generate patch)

Comparing deliantra/server/ext/dm-support.ext (file contents):
Revision 1.6 by root, Thu May 24 03:33:29 2007 UTC vs.
Revision 1.7 by root, Mon Aug 20 18:11:02 2007 UTC

60 print "result:\n", cf::dumpval @res > 1 ? \@res : $res[0] if @res; 60 print "result:\n", cf::dumpval @res > 1 ? \@res : $res[0] if @res;
61 print "\n> "; 61 print "\n> ";
62 }; 62 };
63 63
64 if ($cmd =~ s/\s*&$//) { 64 if ($cmd =~ s/\s*&$//) {
65 Coro::async_pool { $sub->() }; 65 Coro::async { $sub->() };
66 } else { 66 } else {
67 $sub->(); 67 $sub->();
68 } 68 }
69 } 69 }
70 70

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines