mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-10 23:32:09 +00:00
fix \n order in alias expansion
This commit is contained in:
parent
712aecb1a2
commit
5e05df417d
1 changed files with 1 additions and 1 deletions
|
@ -867,8 +867,8 @@ Cmd_ExecuteString (const char *text, cmd_source_t src)
|
|||
// check alias
|
||||
a = (cmdalias_t*)Hash_Find (cmd_alias_hash, cmd_argv[0]);
|
||||
if (a) {
|
||||
Cbuf_InsertText (a->value);
|
||||
Cbuf_InsertText ("\n");
|
||||
Cbuf_InsertText (a->value);
|
||||
return;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue