comparison src/mbyte.c @ 19195:2ef19eed524a v8.2.0156

patch 8.2.0156: various typos in source files and tests Commit: https://github.com/vim/vim/commit/4b96df5a017a04141c4e901b1fc5704a3ca48099 Author: Bram Moolenaar <Bram@vim.org> Date: Sun Jan 26 22:00:26 2020 +0100 patch 8.2.0156: various typos in source files and tests Problem: Various typos in source files and tests. Solution: Fix the typos. (Emir Sari, closes https://github.com/vim/vim/issues/5532)
author Bram Moolenaar <Bram@vim.org>
date Sun, 26 Jan 2020 22:15:05 +0100
parents f41b55f9357c
children 22f0dda71638
comparison
equal deleted inserted replaced
19194:9986e645676b 19195:2ef19eed524a
958 case 0x21: 958 case 0x21:
959 case 0x22: 959 case 0x22:
960 // special symbols 960 // special symbols
961 return 10; 961 return 10;
962 case 0x23: 962 case 0x23:
963 // alpha-numeric 963 // alphanumeric
964 return 11; 964 return 11;
965 case 0x24: 965 case 0x24:
966 // hiragana 966 // hiragana
967 return 12; 967 return 12;
968 case 0x25: 968 case 0x25:
992 992
993 /* 993 /*
994 * 20 : Hangul 994 * 20 : Hangul
995 * 21 : Hanja 995 * 21 : Hanja
996 * 22 : Symbols 996 * 22 : Symbols
997 * 23 : Alpha-numeric/Roman Letter (Full width) 997 * 23 : Alphanumeric/Roman Letter (Full width)
998 * 24 : Hangul Letter(Alphabet) 998 * 24 : Hangul Letter(Alphabet)
999 * 25 : Roman Numeral/Greek Letter 999 * 25 : Roman Numeral/Greek Letter
1000 * 26 : Box Drawings 1000 * 26 : Box Drawings
1001 * 27 : Unit Symbols 1001 * 27 : Unit Symbols
1002 * 28 : Circled/Parenthesized Letter 1002 * 28 : Circled/Parenthesized Letter
1023 case 0xA1: 1023 case 0xA1:
1024 case 0xA2: 1024 case 0xA2:
1025 // Symbols 1025 // Symbols
1026 return 22; 1026 return 22;
1027 case 0xA3: 1027 case 0xA3:
1028 // Alpha-numeric 1028 // Alphanumeric
1029 return 23; 1029 return 23;
1030 case 0xA4: 1030 case 0xA4:
1031 // Hangul Letter(Alphabet) 1031 // Hangul Letter(Alphabet)
1032 return 24; 1032 return 24;
1033 case 0xA5: 1033 case 0xA5: