|
Karsten Hopp |
9467af |
To: vim_dev@googlegroups.com
|
|
Karsten Hopp |
9467af |
Subject: Patch 7.3.120
|
|
Karsten Hopp |
9467af |
Fcc: outbox
|
|
Karsten Hopp |
9467af |
From: Bram Moolenaar <Bram@moolenaar.net>
|
|
Karsten Hopp |
9467af |
Mime-Version: 1.0
|
|
Karsten Hopp |
9467af |
Content-Type: text/plain; charset=UTF-8
|
|
Karsten Hopp |
9467af |
Content-Transfer-Encoding: 8bit
|
|
Karsten Hopp |
9467af |
------------
|
|
Karsten Hopp |
9467af |
|
|
Karsten Hopp |
9467af |
Patch 7.3.120
|
|
Karsten Hopp |
9467af |
Problem: The message for an existing swap file is too long to fit in a 25
|
|
Karsten Hopp |
9467af |
line terminal.
|
|
Karsten Hopp |
9467af |
Solution: Make the message shorter. (Chad Miller)
|
|
Karsten Hopp |
9467af |
Files: src/memline.c
|
|
Karsten Hopp |
9467af |
|
|
Karsten Hopp |
9467af |
|
|
Karsten Hopp |
9467af |
*** ../vim-7.3.119/src/memline.c 2011-01-17 20:08:03.000000000 +0100
|
|
Karsten Hopp |
9467af |
--- src/memline.c 2011-02-13 14:18:08.000000000 +0100
|
|
Karsten Hopp |
9467af |
***************
|
|
Karsten Hopp |
9467af |
*** 4071,4079 ****
|
|
Karsten Hopp |
9467af |
}
|
|
Karsten Hopp |
9467af |
/* Some of these messages are long to allow translation to
|
|
Karsten Hopp |
9467af |
* other languages. */
|
|
Karsten Hopp |
9467af |
! MSG_PUTS(_("\n(1) Another program may be editing the same file.\n If this is the case, be careful not to end up with two\n different instances of the same file when making changes.\n"));
|
|
Karsten Hopp |
9467af |
! MSG_PUTS(_(" Quit, or continue with caution.\n"));
|
|
Karsten Hopp |
9467af |
! MSG_PUTS(_("\n(2) An edit session for this file crashed.\n"));
|
|
Karsten Hopp |
9467af |
MSG_PUTS(_(" If this is the case, use \":recover\" or \"vim -r "));
|
|
Karsten Hopp |
9467af |
msg_outtrans(buf->b_fname);
|
|
Karsten Hopp |
9467af |
MSG_PUTS(_("\"\n to recover the changes (see \":help recovery\").\n"));
|
|
Karsten Hopp |
9467af |
--- 4071,4079 ----
|
|
Karsten Hopp |
9467af |
}
|
|
Karsten Hopp |
9467af |
/* Some of these messages are long to allow translation to
|
|
Karsten Hopp |
9467af |
* other languages. */
|
|
Karsten Hopp |
9467af |
! MSG_PUTS(_("\n(1) Another program may be editing the same file. If this is the case,\n be careful not to end up with two different instances of the same\n file when making changes."));
|
|
Karsten Hopp |
9467af |
! MSG_PUTS(_(" Quit, or continue with caution.\n"));
|
|
Karsten Hopp |
9467af |
! MSG_PUTS(_("(2) An edit session for this file crashed.\n"));
|
|
Karsten Hopp |
9467af |
MSG_PUTS(_(" If this is the case, use \":recover\" or \"vim -r "));
|
|
Karsten Hopp |
9467af |
msg_outtrans(buf->b_fname);
|
|
Karsten Hopp |
9467af |
MSG_PUTS(_("\"\n to recover the changes (see \":help recovery\").\n"));
|
|
Karsten Hopp |
9467af |
*** ../vim-7.3.119/src/version.c 2011-02-12 13:59:55.000000000 +0100
|
|
Karsten Hopp |
9467af |
--- src/version.c 2011-02-15 11:56:14.000000000 +0100
|
|
Karsten Hopp |
9467af |
***************
|
|
Karsten Hopp |
9467af |
*** 716,717 ****
|
|
Karsten Hopp |
9467af |
--- 716,719 ----
|
|
Karsten Hopp |
9467af |
{ /* Add new patch number below this line */
|
|
Karsten Hopp |
9467af |
+ /**/
|
|
Karsten Hopp |
9467af |
+ 120,
|
|
Karsten Hopp |
9467af |
/**/
|
|
Karsten Hopp |
9467af |
|
|
Karsten Hopp |
9467af |
--
|
|
Karsten Hopp |
9467af |
hundred-and-one symptoms of being an internet addict:
|
|
Karsten Hopp |
9467af |
257. Your "hundred-and-one" lists include well over 101 items, since you
|
|
Karsten Hopp |
9467af |
automatically interpret all numbers in hexadecimal notation.
|
|
Karsten Hopp |
9467af |
(hex 101 = decimal 257)
|
|
Karsten Hopp |
9467af |
|
|
Karsten Hopp |
9467af |
/// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net \\\
|
|
Karsten Hopp |
9467af |
/// sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
|
|
Karsten Hopp |
9467af |
\\\ an exciting new programming language -- http://www.Zimbu.org ///
|
|
Karsten Hopp |
9467af |
\\\ help me help AIDS victims -- http://ICCF-Holland.org ///
|