comparison src/fold.c @ 39:410fa1a31baf v7.0023

updated for version 7.0023
author vimboss
date Sun, 19 Dec 2004 22:46:22 +0000
parents 125e80798a85
children f529edb9bab3
comparison
equal deleted inserted replaced
38:c524f99c7925 39:410fa1a31baf
2068 ++len; 2068 ++len;
2069 mch_memmove(s, s + len, STRLEN(s + len) + 1); 2069 mch_memmove(s, s + len, STRLEN(s + len) + 1);
2070 } 2070 }
2071 else 2071 else
2072 { 2072 {
2073 #ifdef FEAT_MBYTE 2073 mb_ptr_adv(s);
2074 if (has_mbyte)
2075 s += (*mb_ptr2len_check)(s);
2076 else
2077 #endif
2078 ++s;
2079 } 2074 }
2080 } 2075 }
2081 } 2076 }
2082 2077
2083 /* Folding by indent, expr, marker and syntax. {{{1 */ 2078 /* Folding by indent, expr, marker and syntax. {{{1 */