URI: 
       added VT100 RI. - st - simple terminal
  HTML git clone https://git.parazyd.org/st
   DIR Log
   DIR Files
   DIR Refs
   DIR README
   DIR LICENSE
       ---
   DIR commit 639f16d200eee5e297187c582afd9fd2e3e8ef57
   DIR parent 636c369d86b6452a89f54c497a9816ca1f866d4e
  HTML Author: Aurélien Aptel <aurelien.aptel@gmail.com>
       Date:   Sun, 21 Feb 2010 14:39:31 +0100
       
       added VT100 RI.
       
       Diffstat:
         M st.c                                |       9 +++++++++
       
       1 file changed, 9 insertions(+), 0 deletions(-)
       ---
   DIR diff --git a/st.c b/st.c
       @@ -860,6 +860,13 @@ tputc(char c) {
                                        tmoveto(term.c.x-1, term.c.y);
                                        term.esc = 0;
                                        break;
       +                        case 'M': /* RI -- Reverse index */
       +                                if(term.c.y == term.top)
       +                                        tinsertblankline(1);
       +                                else
       +                                        tmoveto(term.c.x, term.c.y-1);
       +                                term.esc = 0;
       +                                break;
                                case '=': /* DECPAM */
                                        term.mode |= MODE_APPKEYPAD;
                                        term.esc = 0;
       @@ -870,9 +877,11 @@ tputc(char c) {
                                        break;
                                case '7':
                                        tcursor(CURSOR_SAVE);
       +                                term.esc = 0;
                                        break;
                                case '8':
                                        tcursor(CURSOR_LOAD);
       +                                term.esc = 0;
                                        break;
                                default:
                                        fprintf(stderr, "erresc: unknown sequence ESC %02X '%c'\n", c, isprint(c)?c:'.');