Include xterm BEL sequence to terminate OSC, standardize Makefile variables

This commit is contained in:
Keith Winstein
2011-01-10 03:51:55 -05:00
parent 546068a5ed
commit 3174e4f659
3 changed files with 10 additions and 8 deletions
+1 -1
View File
@@ -339,7 +339,7 @@ Transition OSC_String::input_state_rule( wchar_t ch )
return Transition( OSC_Put(), NULL );
}
if ( ch == 0x9C ) {
if ( (ch == 0x9C) || (ch == 0x07) ) { /* 0x07 is xterm non-ANSI variant */
return Transition( Ignore(), &family->s_Ground );
}