Re: [dev] [st] [PATCH 1/2] Fix commented out code

2017-03-29 Thread Alexander Krotov
On Wed, Mar 29, 2017 at 10:09:15AM +0200, Ivan Delalande wrote: > On Sat, Mar 25, 2017 at 11:02:42PM +0300, Alexander Krotov wrote: > > --- a/st.c > > +++ b/st.c > > @@ -2537,7 +2537,7 @@ tresize(int col, int row) > > } > > > > /* allocate any new rows */ > > - for (/* i == minrow */; i

Re: [dev] [st] [PATCH 1/2] Fix commented out code

2017-03-29 Thread Roberto E . Vargas Caballero
> I don't think that's a typo, just a short form for "hey, watch out, > remember we still have `i == minrow` from the last loop here!". ;) Uh, you are right. Sadly I read your comment after pushing it. Best regards,

Re: [dev] [st] [PATCH 1/2] Fix commented out code

2017-03-29 Thread Ivan Delalande
On Sat, Mar 25, 2017 at 11:02:42PM +0300, Alexander Krotov wrote: > --- a/st.c > +++ b/st.c > @@ -2537,7 +2537,7 @@ tresize(int col, int row) > } > > /* allocate any new rows */ > - for (/* i == minrow */; i < row; i++) { > + for (/* i = minrow */; i < row; i++) { >