Removing unneeded comments. - 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 3ae02990648447ec3252b42f5b64e18818c19fd8
 (DIR) parent fed9968ba5d3c6874f73517b261968746d36801e
 (HTM) Author: Christoph Lohmann <20h@r-36.net>
       Date:   Thu, 18 Apr 2013 06:41:54 +0200
       
       Removing unneeded comments.
       
       Diffstat:
         M st.c                                |       3 +--
       
       1 file changed, 1 insertion(+), 2 deletions(-)
       ---
 (DIR) diff --git a/st.c b/st.c
       @@ -1195,11 +1195,10 @@ treset(void) {
        
        void
        tnew(int col, int row) {
       -        /* setting "zero" terminal to resize it later */
                memset(&term, 0, sizeof(Term));
                tresize(col, row);
                term.numlock = 1;
       -        /* setup screen */
       +
                treset();
        }