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.10 by root, Wed Sep 19 21:49:53 2007 UTC vs.
Revision 1.11 by root, Thu Sep 20 12:30:28 2007 UTC

65 print "result:\n", cf::dumpval @res > 1 ? \@res : $res[0] if @res; 65 print "result:\n", cf::dumpval @res > 1 ? \@res : $res[0] if @res;
66 print "\n> "; 66 print "\n> ";
67 }; 67 };
68 68
69 if ($cmd =~ s/\s*&$//) { 69 if ($cmd =~ s/\s*&$//) {
70 Coro::async { $sub->() }; 70 cf::async {
71 $Coro::current->desc ($cmd);
72 $sub->()
73 };
71 } else { 74 } else {
72 $sub->(); 75 $sub->();
73 } 76 }
74 } 77 }
75 78

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines