mirror of
https://gitlab.freedesktop.org/wayland/weston.git
synced 2026-05-06 03:28:00 +02:00
terminal: Stop complaining about OSC escape code 7
This is the current working directory of the shell as an URI. We don't use that for anythign at the moment, but let's not complain about it at least.
This commit is contained in:
parent
a94dc8a51b
commit
8a20500847
1 changed files with 4 additions and 1 deletions
|
|
@ -1228,8 +1228,11 @@ handle_osc(struct terminal *terminal)
|
|||
case 2: /* Window title*/
|
||||
window_set_title(terminal->window, p);
|
||||
break;
|
||||
case 7: /* shell cwd as uri */
|
||||
break;
|
||||
default:
|
||||
fprintf(stderr, "Unknown OSC escape code %d\n", code);
|
||||
fprintf(stderr, "Unknown OSC escape code %d, text %s\n",
|
||||
code, p);
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue