Commit 61e8b3d5 authored by David Lawrence Ramsey's avatar David Lawrence Ramsey Committed by Benno Schulenberg
Browse files

screen: don't hide two-column characters at left edge in softwrap mode

When in softwrap mode, no "$" continuation characters are displayed,
so the code that reserves space for them should be skipped then.

This fixes https://savannah.gnu.org/bugs/?50335.
No related merge requests found
Showing with 1 addition and 1 deletion
+1 -1
......@@ -1833,7 +1833,7 @@ char *display_string(const char *buf, size_t start_col, size_t span,
buf += start_index;
if (*buf != '\0' && *buf != '\t' &&
(column < start_col || (isdata && column > 0))) {
(column < start_col || (isdata && !ISSET(SOFTWRAP) && column > 0))) {
/* We don't display the complete first character as it starts to
* the left of the screen. */
if (is_cntrl_mbchar(buf)) {
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment