tweaks: reshuffle two conditions, to have the most unlikely one first

This also better fits the preceding comment.
master
Benno Schulenberg 2021-04-05 16:10:44 +02:00
parent c3cdb099da
commit 9c16be32d7
1 changed files with 2 additions and 2 deletions

View File

@ -1731,8 +1731,8 @@ char *display_string(const char *buf, size_t column, size_t span,
#endif
/* If the first character starts before the left edge, or would be
* overwritten by a "<" token, then show placeholders instead. */
if (*buf != '\0' && *buf != '\t' && (start_col < column ||
(start_col > 0 && isdata && !ISSET(SOFTWRAP)))) {
if ((start_col < column || (start_col > 0 && isdata && !ISSET(SOFTWRAP))) &&
*buf != '\0' && *buf != '\t') {
if (is_cntrl_char(buf)) {
if (start_col < column) {
converted[index++] = control_mbrep(buf, isdata);