diff options
| author | Aurélien Aptel <aurelien.aptel@gmail.com> | 2010-10-16 20:54:19 +0200 | 
|---|---|---|
| committer | Aurélien Aptel <aurelien.aptel@gmail.com> | 2010-10-16 20:54:19 +0200 | 
| commit | f2388b19b958cb10a4109d152aa73e723b23e9c3 (patch) | |
| tree | 4a6c7224c55476662c89d898f0a17650d6ad6e62 | |
| parent | 311dd6952b9651c79f39735061a9689777dbacb2 (diff) | |
| download | st-f2388b19b958cb10a4109d152aa73e723b23e9c3.tar.xz st-f2388b19b958cb10a4109d152aa73e723b23e9c3.zip | |
\v and \f are have the same behaviour of \n.
| -rw-r--r-- | st.c | 2 | 
1 files changed, 2 insertions, 0 deletions
| @@ -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)); | 
