summaryrefslogtreecommitdiffstats
path: root/cmd-list-buffers.c
diff options
context:
space:
mode:
authornicm <nicm>2015-11-12 11:09:11 +0000
committernicm <nicm>2015-11-12 11:09:11 +0000
commit1b86f520ea1620628e569ea833c7b13306c18a4e (patch)
tree02c4aa83f31f42b1128171e9b6a0a566e564e416 /cmd-list-buffers.c
parenta0f3999ce7b6df32324b493fa3c8007de93d2c48 (diff)
Nuke the utf8 and status-utf8 options and make tmux only a UTF-8
terminal. We still support non-UTF-8 terminals outside tmux, but inside it is always UTF-8 (as when the utf8 and status-utf8 options were on).
Diffstat (limited to 'cmd-list-buffers.c')
-rw-r--r--cmd-list-buffers.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/cmd-list-buffers.c b/cmd-list-buffers.c
index 37571b80..3a8a790a 100644
--- a/cmd-list-buffers.c
+++ b/cmd-list-buffers.c
@@ -55,7 +55,7 @@ cmd_list_buffers_exec(unused struct cmd *self, struct cmd_q *cmdq)
pb = NULL;
while ((pb = paste_walk(pb)) != NULL) {
ft = format_create();
- format_defaults_paste_buffer(ft, pb, 0);
+ format_defaults_paste_buffer(ft, pb);
line = format_expand(ft, template);
cmdq_print(cmdq, "%s", line);