Browse Source

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(-)
master
Roberto E. Vargas Caballero 12 years ago
parent
commit
c3b6345595
1 changed files with 3 additions and 3 deletions
  1. +3
    -3
      st.c

+ 3
- 3
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",


Loading…
Cancel
Save