Commit 722688d

Aurélien Aptel <aurelien.aptel@gmail.com>
2010-10-16 14:54:19
\v and \f are have the same behaviour of \n.
1 parent 6f87a39
Changed files (1)
st.c
@@ -1168,6 +1168,8 @@ tputc(char c) {
 		case '\r':
 			tmoveto(0, term.c.y);
 			break;
+		case '\f':
+		case '\v':
 		case '\n':
 			/* go to first col if the mode is set */
 			tnewline(IS_SET(MODE_CRLF));