]> git.armaanb.net Git - st.git/commitdiff
Fix copy of line with len = 0
authorRoberto E. Vargas Caballero <k0ga@shike2.com>
Thu, 10 Sep 2015 09:53:11 +0000 (11:53 +0200)
committerRoberto E. Vargas Caballero <k0ga@shike2.com>
Thu, 10 Sep 2015 09:53:11 +0000 (11:53 +0200)
When a line has no any character linelen is 0, so last = &term.line[y][MIN(lastx, linelen-1)]
generated a pointer to the end of the previous line. The best thing we can do in this case
is to add a newline, because we don't have a glyph to print (and consult its state of
wrapping).

st.c

diff --git a/st.c b/st.c
index 530d7e48ff9a7f11720e7c10ef25f8aa1db3bdd7..bd8b81591e0d52bed9fcd7604ceef3017525614f 100644 (file)
--- a/st.c
+++ b/st.c
@@ -1004,7 +1004,10 @@ getsel(void)
 
        /* append every set & selected glyph to the selection */
        for (y = sel.nb.y; y <= sel.ne.y; y++) {
-               linelen = tlinelen(y);
+               if ((linelen = tlinelen(y)) == 0) {
+                       *ptr++ = '\n';
+                       continue;
+               }
 
                if (sel.type == SEL_RECTANGULAR) {
                        gp = &term.line[y][sel.nb.x];