comparison src/charset.c @ 10549:055b1633aed7 v8.0.0164

patch 8.0.0164: outdated and misplaced comments commit https://github.com/vim/vim/commit/caa55b65c204946d160c1b743c5f8f3b506dc4d3 Author: Bram Moolenaar <Bram@vim.org> Date: Tue Jan 10 13:51:09 2017 +0100 patch 8.0.0164: outdated and misplaced comments Problem: Outdated and misplaced comments. Solution: Fix the comments.
author Christian Brabandt <cb@256bit.org>
date Tue, 10 Jan 2017 14:00:04 +0100
parents 4aead6a9b7a9
children 77d66e9ac0ab
comparison
equal deleted inserted replaced
10548:74effdaa369e 10549:055b1633aed7
885 return (c > 0 && c < 0x100 && (g_chartab[c] & CT_ID_CHAR)); 885 return (c > 0 && c < 0x100 && (g_chartab[c] & CT_ID_CHAR));
886 } 886 }
887 887
888 /* 888 /*
889 * return TRUE if 'c' is a keyword character: Letters and characters from 889 * return TRUE if 'c' is a keyword character: Letters and characters from
890 * 'iskeyword' option for current buffer. 890 * 'iskeyword' option for the current buffer.
891 * For multi-byte characters mb_get_class() is used (builtin rules). 891 * For multi-byte characters mb_get_class() is used (builtin rules).
892 */ 892 */
893 int 893 int
894 vim_iswordc(int c) 894 vim_iswordc(int c)
895 { 895 {