|
Karsten Hopp |
7095fa |
To: vim_dev@googlegroups.com
|
|
Karsten Hopp |
7095fa |
Subject: Patch 7.3.912
|
|
Karsten Hopp |
7095fa |
Fcc: outbox
|
|
Karsten Hopp |
7095fa |
From: Bram Moolenaar <Bram@moolenaar.net>
|
|
Karsten Hopp |
7095fa |
Mime-Version: 1.0
|
|
Karsten Hopp |
7095fa |
Content-Type: text/plain; charset=UTF-8
|
|
Karsten Hopp |
7095fa |
Content-Transfer-Encoding: 8bit
|
|
Karsten Hopp |
7095fa |
------------
|
|
Karsten Hopp |
7095fa |
|
|
Karsten Hopp |
7095fa |
Patch 7.3.912
|
|
Karsten Hopp |
7095fa |
Problem: Typing a ":" command at the hit-enter dialog does not work if the
|
|
Karsten Hopp |
7095fa |
"file changed" dialog happens next.
|
|
Karsten Hopp |
7095fa |
Solution: Check for changed files before giving the hit-enter dialog.
|
|
Karsten Hopp |
7095fa |
Files: src/message.c
|
|
Karsten Hopp |
7095fa |
|
|
Karsten Hopp |
7095fa |
|
|
Karsten Hopp |
7095fa |
*** ../vim-7.3.911/src/message.c 2013-03-19 13:56:03.000000000 +0100
|
|
Karsten Hopp |
7095fa |
--- src/message.c 2013-04-24 15:01:31.000000000 +0200
|
|
Karsten Hopp |
7095fa |
***************
|
|
Karsten Hopp |
7095fa |
*** 939,944 ****
|
|
Karsten Hopp |
7095fa |
--- 939,950 ----
|
|
Karsten Hopp |
7095fa |
#ifdef USE_ON_FLY_SCROLL
|
|
Karsten Hopp |
7095fa |
dont_scroll = TRUE; /* disallow scrolling here */
|
|
Karsten Hopp |
7095fa |
#endif
|
|
Karsten Hopp |
7095fa |
+ /* Avoid the sequence that the user types ":" at the hit-return prompt
|
|
Karsten Hopp |
7095fa |
+ * to start an Ex command, but the file-changed dialog gets in the
|
|
Karsten Hopp |
7095fa |
+ * way. */
|
|
Karsten Hopp |
7095fa |
+ if (need_check_timestamps)
|
|
Karsten Hopp |
7095fa |
+ check_timestamps(FALSE);
|
|
Karsten Hopp |
7095fa |
+
|
|
Karsten Hopp |
7095fa |
hit_return_msg();
|
|
Karsten Hopp |
7095fa |
|
|
Karsten Hopp |
7095fa |
do
|
|
Karsten Hopp |
7095fa |
*** ../vim-7.3.911/src/version.c 2013-04-24 14:06:42.000000000 +0200
|
|
Karsten Hopp |
7095fa |
--- src/version.c 2013-04-24 15:04:30.000000000 +0200
|
|
Karsten Hopp |
7095fa |
***************
|
|
Karsten Hopp |
7095fa |
*** 730,731 ****
|
|
Karsten Hopp |
7095fa |
--- 730,733 ----
|
|
Karsten Hopp |
7095fa |
{ /* Add new patch number below this line */
|
|
Karsten Hopp |
7095fa |
+ /**/
|
|
Karsten Hopp |
7095fa |
+ 912,
|
|
Karsten Hopp |
7095fa |
/**/
|
|
Karsten Hopp |
7095fa |
|
|
Karsten Hopp |
7095fa |
--
|
|
Karsten Hopp |
7095fa |
hundred-and-one symptoms of being an internet addict:
|
|
Karsten Hopp |
7095fa |
224. You set up your own Web page. You set up a Web page for each
|
|
Karsten Hopp |
7095fa |
of your kids... and your pets.
|
|
Karsten Hopp |
7095fa |
|
|
Karsten Hopp |
7095fa |
/// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net \\\
|
|
Karsten Hopp |
7095fa |
/// sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
|
|
Karsten Hopp |
7095fa |
\\\ an exciting new programming language -- http://www.Zimbu.org ///
|
|
Karsten Hopp |
7095fa |
\\\ help me help AIDS victims -- http://ICCF-Holland.org ///
|