aboutsummaryrefslogtreecommitdiff
path: root/st.c
diff options
context:
space:
mode:
Diffstat (limited to 'st.c')
-rw-r--r--st.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/st.c b/st.c
index 16462c7..147a6fa 100644
--- a/st.c
+++ b/st.c
@@ -1168,6 +1168,8 @@ tputc(char c) {
1168 case '\r': 1168 case '\r':
1169 tmoveto(0, term.c.y); 1169 tmoveto(0, term.c.y);
1170 break; 1170 break;
1171 case '\f':
1172 case '\v':
1171 case '\n': 1173 case '\n':
1172 /* go to first col if the mode is set */ 1174 /* go to first col if the mode is set */
1173 tnewline(IS_SET(MODE_CRLF)); 1175 tnewline(IS_SET(MODE_CRLF));