sandy

text editor
git clone git://git.suckless.org/sandy
Log | Files | Refs | README | LICENSE

commit 71675713956f4cdb684d9760ff115aeaa5071cf0
parent 8fe5d1489b600812ac4a6c85f53141b1dc084563
Author: Rafael Garcia <rafael.garcia.gallego@gmail.com>
Date:   Tue, 31 May 2011 20:34:29 +0200

Minor syntax fix by pancake.
Diffstat:
sandy.c | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sandy.c b/sandy.c @@ -1037,7 +1037,7 @@ i_resize(void) { result = ioctl(fd, TIOCGWINSZ, &ws); close(fd); if(result<0) return; - if(cols==ws.ws_col && lines ==ws.ws_row) return; + if(cols==ws.ws_col && lines==ws.ws_row) return; cols=ws.ws_col; lines=ws.ws_row; endwin();