comparison src/undo.c @ 5621:be61f315eafe v7.4.157

updated for version 7.4.157 Problem: Error number used twice. (Yukihiro Nakadaira) Solution: Change the one not referred in the docs.
author Bram Moolenaar <bram@vim.org>
date Thu, 23 Jan 2014 18:12:49 +0100
parents 9818311eeca0
children 47a673b20e49
comparison
equal deleted inserted replaced
5620:5c41aa1c24cf 5621:be61f315eafe
407 change_warning(0); 407 change_warning(0);
408 if (bot > curbuf->b_ml.ml_line_count + 1) 408 if (bot > curbuf->b_ml.ml_line_count + 1)
409 { 409 {
410 /* This happens when the FileChangedRO autocommand changes the 410 /* This happens when the FileChangedRO autocommand changes the
411 * file in a way it becomes shorter. */ 411 * file in a way it becomes shorter. */
412 EMSG(_("E834: Line count changed unexpectedly")); 412 EMSG(_("E881: Line count changed unexpectedly"));
413 return FAIL; 413 return FAIL;
414 } 414 }
415 #endif 415 #endif
416 } 416 }
417 417