diff options
author | Aurélien Aptel <aurelien.aptel@gmail.com> | 2009-05-15 00:39:51 +0200 |
---|---|---|
committer | Aurélien Aptel <aurelien.aptel@gmail.com> | 2009-05-15 00:39:51 +0200 |
commit | a866108af2c6c008e37a32c61cee931efa5e4f9a (patch) | |
tree | 7ef89a3847d9108e56d657d4b1e2dc12194acf52 | |
parent | 1cf8b77d2798a43c979b71e16fd45d63b808f569 (diff) | |
download | st-a866108af2c6c008e37a32c61cee931efa5e4f9a.tar.gz st-a866108af2c6c008e37a32c61cee931efa5e4f9a.zip |
tab moves the cursor instead of inserting spaces.
-rw-r--r-- | st.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -566,7 +566,7 @@ tputtab(void) { | |||
566 | space--; | 566 | space--; |
567 | 567 | ||
568 | for(; space > 0; space--) | 568 | for(; space > 0; space--) |
569 | tputc(' '); | 569 | tcursor(CSright); |
570 | } | 570 | } |
571 | 571 | ||
572 | void | 572 | void |