0
0
mirror of https://github.com/vim/vim.git synced 2025-09-24 03:44:06 -04:00

updated for version 7.0227

This commit is contained in:
Bram Moolenaar
2006-03-17 23:10:44 +00:00
parent ea0cd36bdd
commit a83c3e0ebd
5 changed files with 21 additions and 17 deletions

View File

@@ -7880,9 +7880,13 @@ nv_g_cmd(cap)
/*
* "g8": Display the bytes used for the UTF-8 character under the
* cursor. It is displayed in hex.
* "8g8" finds illegal byte sequence.
*/
case '8':
show_utf8();
if (cap->count0 == 8)
utf_find_illegal();
else
show_utf8();
break;
#endif