diff options
| author | Alexander <alex0player@gmail.com> | 2014-05-26 09:23:56 +0400 |
|---|---|---|
| committer | Roberto E. Vargas Caballero <k0ga@shike2.com> | 2014-05-27 08:37:12 +0200 |
| commit | 2411308bd24c4db97a3bb06d38f183a679aec1ea (patch) | |
| tree | 96d6515bf37031fdb51d8f244c346604482af14d | |
| parent | d03aa8d20bcc8a94a7737331a9ec0bf11df3e572 (diff) | |
| download | st-2411308bd24c4db97a3bb06d38f183a679aec1ea.tar.gz st-2411308bd24c4db97a3bb06d38f183a679aec1ea.zip | |
Fixed copying empty lines inside selection.
The code was assuming that empty lines have implicit wrap-around attribute.
Signed-off-by: Roberto E. Vargas Caballero <k0ga@shike2.com>
| -rw-r--r-- | st.c | 2 |
1 files changed, 1 insertions, 1 deletions
| @@ -949,7 +949,7 @@ getsel(void) { | |||
| 949 | * st. | 949 | * st. |
| 950 | * FIXME: Fix the computer world. | 950 | * FIXME: Fix the computer world. |
| 951 | */ | 951 | */ |
| 952 | if(y < sel.ne.y && x > 0 && !((gp-1)->mode & ATTR_WRAP)) | 952 | if(y < sel.ne.y && !(x > 0 && (gp-1)->mode & ATTR_WRAP)) |
| 953 | *ptr++ = '\n'; | 953 | *ptr++ = '\n'; |
| 954 | 954 | ||
| 955 | /* | 955 | /* |
