Re: [PATCH 01/10] terminal: UTF-8 support

2011-01-10 Thread Marty Jack
I think he said he hadn't implemented that yet and it would come in the next patchset. It's an OSC 0 ; window-title ST sequence that xterm supports to set the window title. On 01/10/2011 11:03 AM, Tiago Vignatti wrote: > FYI, I'm still getting the following message and the "0;": > "Unknown esca

Re: [PATCH 01/10] terminal: UTF-8 support

2011-01-10 Thread Tiago Vignatti
FYI, I'm still getting the following message and the "0;": "Unknown escape code: ]" On Fri, Jan 07, 2011 at 07:46:54PM +, ext Callum Lowcay wrote: > Signed-off-by: Callum Lowcay > --- > clients/terminal.c | 200 > +--- > 1 files changed, 175

Re: [PATCH 01/10] terminal: UTF-8 support

2011-01-09 Thread Callum Lowcay
Hi, Public repository now up at https://github.com/CLowcay/wayland-terminal -- Callum On Sat, 2011-01-08 at 21:16 -0500, Kristian Høgsberg wrote: > Hi Callum, > > Thanks, that's great, I've applied the entire series and pushed. If > you have more patches coming, it'll be a lot easier for me to

Re: [PATCH 01/10] terminal: UTF-8 support

2011-01-09 Thread Bill Spitzak
Please make sure that errors result in only the first byte of an error being replaced and UTF-8 parsing continuing with the second byte. For instance if 0xE0 followed by 0x20 should produce an error indicator followed by a space. It appears this code will only produce an error indicator. In

Re: [PATCH 01/10] terminal: UTF-8 support

2011-01-08 Thread Kristian Høgsberg
Hi Callum, Thanks, that's great, I've applied the entire series and pushed. If you have more patches coming, it'll be a lot easier for me to just pull from a git repo (there's a lot of hosting sites to pick from: https://git.wiki.kernel.org/index.php/GitHosting). Kristian On Fri, Jan 7, 2011 at

[PATCH 01/10] terminal: UTF-8 support

2011-01-08 Thread Callum Lowcay
Signed-off-by: Callum Lowcay --- clients/terminal.c | 200 +--- 1 files changed, 175 insertions(+), 25 deletions(-) diff --git a/clients/terminal.c b/clients/terminal.c index ecbf0a4..2868674 100644 --- a/clients/terminal.c +++ b/clients/terminal.