diff options
author | noname@inventati.org <noname@inventati.org> | 2015-04-18 18:45:21 +0200 |
---|---|---|
committer | Roberto E. Vargas Caballero <k0ga@shike2.com> | 2015-04-20 08:30:49 +0200 |
commit | 6ee56d65906362f3f6ade570da0ce9c28788eaf5 (patch) | |
tree | 09d3e7866548ed7b6d74365edcd0ceb41021c917 | |
parent | 215bdb2da3eca77ba01b70503c527baaad67c359 (diff) | |
download | st-6ee56d65906362f3f6ade570da0ce9c28788eaf5.tar.gz st-6ee56d65906362f3f6ade570da0ce9c28788eaf5.tar.bz2 |
Place tlinelen type on separate line.
-rw-r--r-- | st.c | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -673,7 +673,8 @@ y2row(int y) { return LIMIT(y, 0, term.row-1); } -int tlinelen(int y) { +int +tlinelen(int y) { int i = term.col; if(term.line[y][i - 1].mode & ATTR_WRAP) |