From: Jerome St-Louis Date: Sat, 17 Mar 2012 04:44:13 +0000 (-0400) Subject: documentor: Fixed Editor character processing: a ! in front of the key.ctrl check... X-Git-Tag: 0.44.01~264 X-Git-Url: http://ecere.com/cgi-bin/gitweb.cgi?a=commitdiff_plain;ds=sidebyside;h=e718bb497d710d1bc83bdd8caf7e12c8223b0d3e;p=sdk documentor: Fixed Editor character processing: a ! in front of the key.ctrl check had mysteriously dissappeared (#660) --- diff --git a/documentor/src/Documentor.ec b/documentor/src/Documentor.ec index b2a0fe5..39052ff 100644 --- a/documentor/src/Documentor.ec +++ b/documentor/src/Documentor.ec @@ -3289,7 +3289,7 @@ class HelpView : HTMLView default: { // eC BUG HERE: (Should be fixed) - if(key.ctrl && !key.alt && ch >= 32 && ch != 128 /*&& ch < 128*/) + if(!key.ctrl && !key.alt && ch >= 32 && ch != 128 /*&& ch < 128*/) { char string[5]; int len = UTF32toUTF8Len(&ch, 1, string, 5);