comparison src/spell.c @ 5695:a8650e2a0b5a v7.4.193

updated for version 7.4.193 Problem: Typos in messages. Solution: "then" -> "than". (Dominique Pelle)
author Bram Moolenaar <bram@vim.org>
date Sat, 08 Mar 2014 16:13:44 +0100
parents 136f05449f29
children 50dbef5e774a
comparison
equal deleted inserted replaced
5694:10d35c8b50e3 5695:a8650e2a0b5a
12035 c = byts[arridx]; 12035 c = byts[arridx];
12036 12036
12037 /* Normal byte, go one level deeper. If it's not equal to the 12037 /* Normal byte, go one level deeper. If it's not equal to the
12038 * byte in the bad word adjust the score. But don't even try 12038 * byte in the bad word adjust the score. But don't even try
12039 * when the byte was already changed. And don't try when we 12039 * when the byte was already changed. And don't try when we
12040 * just deleted this byte, accepting it is always cheaper then 12040 * just deleted this byte, accepting it is always cheaper than
12041 * delete + substitute. */ 12041 * delete + substitute. */
12042 if (c == fword[sp->ts_fidx] 12042 if (c == fword[sp->ts_fidx]
12043 #ifdef FEAT_MBYTE 12043 #ifdef FEAT_MBYTE
12044 || (sp->ts_tcharlen > 0 && sp->ts_isdiff != DIFF_NONE) 12044 || (sp->ts_tcharlen > 0 && sp->ts_isdiff != DIFF_NONE)
12045 #endif 12045 #endif