commit a866108af2c6c008e37a32c61cee931efa5e4f9a
parent 1cf8b77d2798a43c979b71e16fd45d63b808f569
Author: Aurélien Aptel <aurelien.aptel@gmail.com>
Date:   Fri, 15 May 2009 00:39:51 +0200

tab moves the cursor instead of inserting spaces.

Diffstat:
Mst.c | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/st.c b/st.c @@ -566,7 +566,7 @@ tputtab(void) { space--; for(; space > 0; space--) - tputc(' '); + tcursor(CSright); } void