mirror of
https://github.com/tmux/tmux.git
synced 2025-09-03 06:17:04 +00:00
Merge branch 'obsd-master'
This commit is contained in:
6
format.c
6
format.c
@ -988,7 +988,7 @@ found:
|
||||
}
|
||||
|
||||
/* Skip until end. */
|
||||
static const char *
|
||||
const char *
|
||||
format_skip(const char *s, const char *end)
|
||||
{
|
||||
int brackets = 0;
|
||||
@ -1596,12 +1596,12 @@ done:
|
||||
|
||||
/* Truncate the value if needed. */
|
||||
if (limit > 0) {
|
||||
new = utf8_trimcstr(value, limit);
|
||||
new = format_trim_left(value, limit);
|
||||
format_log(ft, "applied length limit %d: %s", limit, new);
|
||||
free(value);
|
||||
value = new;
|
||||
} else if (limit < 0) {
|
||||
new = utf8_rtrimcstr(value, -limit);
|
||||
new = format_trim_right(value, -limit);
|
||||
format_log(ft, "applied length limit %d: %s", limit, new);
|
||||
free(value);
|
||||
value = new;
|
||||
|
Reference in New Issue
Block a user