mirror of
https://github.com/tmux/tmux.git
synced 2026-07-03 10:12:31 +00:00
Only forbid #( in names and titles (styles are #[ and are useful).
This commit is contained in:
5
tmux.c
5
tmux.c
@@ -290,7 +290,10 @@ clean_name(const char *name, const char* forbid)
|
||||
return (NULL);
|
||||
copy = xstrdup(name);
|
||||
for (cp = copy; *cp != '\0'; cp++) {
|
||||
if (strchr(forbid, *cp) != NULL)
|
||||
if (*cp == '#' && strchr(forbid, '#') != NULL) {
|
||||
if (cp[1] == '(')
|
||||
*cp = '_';
|
||||
} else if (strchr(forbid, *cp) != NULL)
|
||||
*cp = '_';
|
||||
}
|
||||
utf8_stravis(&new_name, copy, VIS_OCTAL|VIS_CSTYLE|VIS_TAB|VIS_NL);
|
||||
|
||||
Reference in New Issue
Block a user