Re: [dev] [st] [PATCH 3/3] Remove 'slide' variable in tresize.

2015-04-13 Thread Roberto E. Vargas Caballero
Applied, thanks. --- Begin Message --- --- st.c | 9 - 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/st.c b/st.c index 51bd40c..ce2646e 100644 --- a/st.c +++ b/st.c @@ -2770,7 +2770,6 @@ tresize(int col, int row) { int i; int minrow = MIN(row, term.row);

Re: [dev] [st] [PATCH 3/3] Remove 'slide' variable in tresize.

2015-04-11 Thread noname
The commiter can squash 3 commits into 1 using rebase -i if he wants. I tried to separate moving loop outside if and removing local variable. I think these changes are independent.

Re: [dev] [st] [PATCH 3/3] Remove 'slide' variable in tresize.

2015-04-11 Thread Silvan Jegen
Heyhey On Sat, Apr 11, 2015 at 05:30:16PM +, noname wrote: > --- > st.c | 9 - > 1 file changed, 4 insertions(+), 5 deletions(-) > > diff --git a/st.c b/st.c > index 51bd40c..ce2646e 100644 This patch series does not change the logic and results in slightly fewer lines of code so I

[dev] [st] [PATCH 3/3] Remove 'slide' variable in tresize.

2015-04-11 Thread noname
--- st.c | 9 - 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/st.c b/st.c index 51bd40c..ce2646e 100644 --- a/st.c +++ b/st.c @@ -2770,7 +2770,6 @@ tresize(int col, int row) { int i; int minrow = MIN(row, term.row); int mincol = MIN(col, term.col); -