comparison src/charset.c @ 1341:2ae2dd2591fa v7.1.055

updated for version 7.1-055
author vimboss
date Mon, 06 Aug 2007 20:28:43 +0000
parents 537cb92935b6
children 79a23c19108a
comparison
equal deleted inserted replaced
1340:8e42199f5121 1341:2ae2dd2591fa
1896 backslash_halve(p) 1896 backslash_halve(p)
1897 char_u *p; 1897 char_u *p;
1898 { 1898 {
1899 for ( ; *p; ++p) 1899 for ( ; *p; ++p)
1900 if (rem_backslash(p)) 1900 if (rem_backslash(p))
1901 STRCPY(p, p + 1); 1901 mch_memmove(p, p + 1, STRLEN(p));
1902 } 1902 }
1903 1903
1904 /* 1904 /*
1905 * backslash_halve() plus save the result in allocated memory. 1905 * backslash_halve() plus save the result in allocated memory.
1906 */ 1906 */