mirror of
https://github.com/tmux/tmux.git
synced 2025-01-12 03:08:46 +00:00
Don't show newlines etc.
This commit is contained in:
parent
e293d6af45
commit
430d219436
@ -1,4 +1,4 @@
|
||||
/* $Id: cmd-server-info.c,v 1.2 2009-01-10 01:41:02 nicm Exp $ */
|
||||
/* $Id: cmd-server-info.c,v 1.3 2009-01-10 01:44:35 nicm Exp $ */
|
||||
|
||||
/*
|
||||
* Copyright (c) 2008 Nicholas Marriott <nicm@users.sourceforge.net>
|
||||
@ -89,8 +89,8 @@ cmd_server_info_exec(unused struct cmd *self, struct cmd_ctx *ctx)
|
||||
ent->code, ent->name);
|
||||
break;
|
||||
case TTYCODE_STRING:
|
||||
strnvis(
|
||||
s, code->value.string, sizeof s, VIS_OCTAL);
|
||||
strnvis(s, code->value.string,
|
||||
sizeof s, VIS_OCTAL|VIS_WHITE);
|
||||
s[(sizeof s) - 1] = '\0';
|
||||
|
||||
ctx->print(ctx, " %2d,%s: (string) %s",
|
||||
|
Loading…
Reference in New Issue
Block a user