Use vis(3) instead of handrolled function.

This commit is contained in:
Nicholas Marriott
2009-06-03 19:37:27 +00:00
parent 2faec76afa
commit 3f16fcb30a
2 changed files with 3 additions and 22 deletions

View File

@ -23,6 +23,7 @@
#include <string.h>
#include <time.h>
#include <unistd.h>
#include <vis.h>
#include "tmux.h"
@ -156,8 +157,8 @@ cmd_server_info_exec(unused struct cmd *self, struct cmd_ctx *ctx)
ent->code, ent->name);
break;
case TTYCODE_STRING:
clean_string(
code->value.string, out, sizeof out);
strnvis(out, code->value.string, sizeof out,
VIS_OCTAL|VIS_TAB|VIS_NL);
ctx->print(ctx, "%2u: %s: (string) %s",
ent->code, ent->name, out);
break;