oops, committed debug stuff by mistake

This commit is contained in:
Bill Currie 2005-04-26 23:40:19 +00:00
parent 23d728022a
commit 3ff740d4f5

View file

@ -371,7 +371,6 @@ Cmd_Alias_f (void)
return;
}
// copy the rest of the command line
puts (Cmd_Args(1));
cmd = dstring_newstr ();
c = Cmd_Argc ();
for (i = 2; i < c; i++) {
@ -379,7 +378,6 @@ Cmd_Alias_f (void)
if (i != c - 1)
dstring_appendstr (cmd, " ");
}
puts (cmd->str);
alias->value = dstring_freeze (cmd);
}