Fixed regression introduced by r38409: For a parameterless escape sequence
process_vt100_command() would be invoked with argument count 1 (instead of 0). This broke e.g. the "dis" command and the command history navigation. git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@39584 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
parent
20631cef4c
commit
38eb09a376
@ -525,8 +525,7 @@ parse_character(char c)
|
||||
// anyway
|
||||
break;
|
||||
default:
|
||||
process_vt100_command(c, true, sScreen.args,
|
||||
sScreen.arg_count + 1);
|
||||
process_vt100_command(c, true, sScreen.args, 0);
|
||||
sScreen.state = CONSOLE_STATE_NORMAL;
|
||||
break;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user