Fix LNM sequence

LNM sequence is a standard ANSI mode, not a DEC private mode.
---
 st.c |    6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)
This commit is contained in:
Roberto E. Vargas Caballero 2012-09-24 10:28:35 +02:00
parent 2f215654a4
commit c3b6345595
1 changed files with 3 additions and 3 deletions

6
st.c
View File

@ -1292,9 +1292,6 @@ tsetmode(bool priv, bool set, int *args, int narg) {
case 7:
MODBIT(term.mode, set, MODE_WRAP);
break;
case 20:
MODBIT(term.mode, set, MODE_CRLF);
break;
case 12: /* att610 -- Start blinking cursor (IGNORED) */
break;
case 25:
@ -1335,6 +1332,9 @@ tsetmode(bool priv, bool set, int *args, int narg) {
case 4:
MODBIT(term.mode, set, MODE_INSERT);
break;
case 20:
MODBIT(term.mode, set, MODE_CRLF);
break;
default:
fprintf(stderr,
"erresc: unknown set/reset mode %d\n",