summaryrefslogtreecommitdiff
path: root/pico/estruct.h
diff options
context:
space:
mode:
authorEduardo Chappa <chappa@washington.edu>2016-11-21 20:50:56 -0700
committerEduardo Chappa <chappa@washington.edu>2016-11-21 20:50:56 -0700
commit65c2c888c9c7b20f8f8ba257211ce4458801c2e9 (patch)
tree88ff0a5221360f5c730d654583033b456b82e45a /pico/estruct.h
parentf2111e1cf184a4c32b97542470294ebf47e6caea (diff)
downloadalpine-65c2c888c9c7b20f8f8ba257211ce4458801c2e9.tar.xz
* Further improvements to color code to remove a bug that makes Pico
add spaces when text is selected for a cut and paste operation. This code adds line length as a parameter to updateline().
Diffstat (limited to 'pico/estruct.h')
-rw-r--r--pico/estruct.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/pico/estruct.h b/pico/estruct.h
index 6223effb..c980491e 100644
--- a/pico/estruct.h
+++ b/pico/estruct.h
@@ -344,6 +344,7 @@ typedef struct lmlist {
typedef struct VIDEO {
short v_flag; /* Flags */
+ int v_length; /* length of line */
CELL v_text[1]; /* Screen data. */
} VIDEO;