diff options
author | Sam Hocevar <sam@hocevar.net> | 2015-11-20 10:43:26 +1100 |
---|---|---|
committer | Sam Hocevar <sam@hocevar.net> | 2015-11-20 10:43:26 +1100 |
commit | 1f9bc0d42bc53fd04cc848da1da52635dcf7a2c0 (patch) | |
tree | c3a81badf03c26ae81cffe258df9dec094966fa7 /doc/ScintillaHistory.html | |
parent | 5bd63ddfe65136ace6d11ec363b4f33e10fdbb49 (diff) | |
download | scintilla-mirror-1f9bc0d42bc53fd04cc848da1da52635dcf7a2c0.tar.gz |
Bug [#1779]. Better Unicode input support on Windows systems.
- support surrogate pairs in WM_CHAR messages
- support characters from supplementary planes in WM_UNICHAR messages
- support WM_UNICHAR messages in non-Unicode mode
- fix some code duplication
Also, do not return FALSE upon receiving a WM_UNICHAR message with
a UNICODE_NOCHAR parameter, since WM_UNICHAR can actually be handled
just fine (at least with the exact same level of support as WM_CHAR).
Diffstat (limited to 'doc/ScintillaHistory.html')
-rw-r--r-- | doc/ScintillaHistory.html | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/doc/ScintillaHistory.html b/doc/ScintillaHistory.html index d554633db..1c7943845 100644 --- a/doc/ScintillaHistory.html +++ b/doc/ScintillaHistory.html @@ -478,6 +478,7 @@ <td>Jordan Jueckstock</td> </tr><tr> <td>Yury Dubinsky</td> + <td>Sam Hocevar</td> </tr> </table> <p> @@ -507,6 +508,11 @@ selection. </li> <li> + On Windows, fix non-BMP input through WM_CHAR and allow WM_UNICHAR to work + with non-BMP characters and on non-Unicode documents. + <a href="http://sourceforge.net/p/scintilla/bugs/1779/">Bug #1779</a>. + </li> + <li> On GTK+ on OS X, fix warning during destruction. <a href="http://sourceforge.net/p/scintilla/bugs/1777/">Bug #1777</a>. </li> |