Add -T, as recommended by Dmitrij D. Czarkoff - st - Personal fork of st
 (HTM) git clone git://git.drkhsh.at/st.git
 (DIR) Log
 (DIR) Files
 (DIR) Refs
 (DIR) README
 (DIR) LICENSE
       ---
 (DIR) commit b5e29cce5246f30dc671cbb9486af704bc8cd2fc
 (DIR) parent 4a193b96862c8ed7147048592aa4a898b3c05b5b
 (HTM) Author: Christoph Lohmann <20h@r-36.net>
       Date:   Fri, 24 Jul 2015 18:24:10 +0200
       
       Add -T, as recommended by Dmitrij D. Czarkoff
       
       Diffstat:
         M st.1                                |       7 +++++++
         M st.c                                |       1 +
       
       2 files changed, 8 insertions(+), 0 deletions(-)
       ---
 (DIR) diff --git a/st.1 b/st.1
       @@ -15,6 +15,8 @@ st \- simple terminal
        .IR file ]
        .RB [ \-t 
        .IR title ]
       +.RB [ \-T
       +.IR title ]
        .RB [ \-l
        .IR line ]
        .RB [ \-w 
       @@ -37,6 +39,8 @@ st \- simple terminal
        .IR file ]
        .RB [ \-t
        .IR title ]
       +.RB [ \-T
       +.IR title ]
        .RB [ \-l
        .IR line ]
        .RB [ \-w
       @@ -79,6 +83,9 @@ standard output.
        .BI \-t " title"
        defines the window title (default 'st').
        .TP
       +.BI \-T " title"
       +defines the window title (default 'st').
       +.TP
        .BI \-w " windowid"
        embeds st within the window identified by 
        .I windowid
 (DIR) diff --git a/st.c b/st.c
       @@ -4302,6 +4302,7 @@ main(int argc, char *argv[])
                        opt_line = EARGF(usage());
                        break;
                case 't':
       +        case 'T':
                        opt_title = EARGF(usage());
                        break;
                case 'w':