diff options
author | Thomas Adam <thomas@xteddy.org> | 2017-06-05 11:59:38 +0100 |
---|---|---|
committer | Thomas Adam <thomas@xteddy.org> | 2017-06-05 11:59:38 +0100 |
commit | e62e17d0461cfb0bfb55ae3c9c7a3815235298fb (patch) | |
tree | 258f2a1e09eb8553842383636a9f6f8a3f75074a /window.c | |
parent | 1c83c0ebcd483c668f02f5f7a8cb80f8a0dc162c (diff) | |
parent | 2f04108f3a35271ef60b3028699b6363e1714140 (diff) | |
download | rtmux-e62e17d0461cfb0bfb55ae3c9c7a3815235298fb.tar.gz rtmux-e62e17d0461cfb0bfb55ae3c9c7a3815235298fb.tar.bz2 rtmux-e62e17d0461cfb0bfb55ae3c9c7a3815235298fb.zip |
Merge branch 'obsd-master'
Conflicts:
tmux.1
window.c
Diffstat (limited to 'window.c')
-rw-r--r-- | window.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -408,7 +408,7 @@ void window_set_name(struct window *w, const char *new_name) { free(w->name); - w->name = xstrdup(new_name); + utf8_stravis(&w->name, new_name, VIS_OCTAL|VIS_CSTYLE|VIS_TAB|VIS_NL); notify_window("window-renamed", w); } |