| tfix \b and clean \t. - st - [fork] customized build of st, the simple terminal | |
| git clone git://src.adamsgaard.dk/st | |
| Log | |
| Files | |
| Refs | |
| README | |
| LICENSE | |
| --- | |
| commit b09401b96b640a796d11774664c49031cee3245a | |
| parent a7922bd1d94ace6d14e40a27820e217cd6c4e632 | |
| Author: Aurélien Aptel <[email protected]> | |
| Date: Thu, 26 Aug 2010 21:32:34 +0200 | |
| fix \b and clean \t. | |
| Diffstat: | |
| M st.c | 5 ----- | |
| 1 file changed, 0 insertions(+), 5 deletions(-) | |
| --- | |
| diff --git a/st.c b/st.c | |
| t@@ -443,11 +443,6 @@ tmovecursor(int dir) { | |
| break; | |
| case CURSOR_LEFT: | |
| xf--; | |
| - if(term.mode & MODE_WRAP && xf < 0) { | |
| - xf = term.col-1, yf--; | |
| - if(yf < term.top) | |
| - yf = term.top, xf = 0; | |
| - } | |
| break; | |
| case CURSOR_RIGHT: | |
| xf++; |