|
Karsten Hopp |
1f4116 |
To: vim_dev@googlegroups.com
|
|
Karsten Hopp |
1f4116 |
Subject: Patch 7.3.107
|
|
Karsten Hopp |
1f4116 |
Fcc: outbox
|
|
Karsten Hopp |
1f4116 |
From: Bram Moolenaar <Bram@moolenaar.net>
|
|
Karsten Hopp |
1f4116 |
Mime-Version: 1.0
|
|
Karsten Hopp |
1f4116 |
Content-Type: text/plain; charset=UTF-8
|
|
Karsten Hopp |
1f4116 |
Content-Transfer-Encoding: 8bit
|
|
Karsten Hopp |
1f4116 |
------------
|
|
Karsten Hopp |
1f4116 |
|
|
Karsten Hopp |
1f4116 |
Patch 7.3.107
|
|
Karsten Hopp |
1f4116 |
Problem: Year number for :undolist can be confused with month or day.
|
|
Karsten Hopp |
1f4116 |
Solution: Change "%y" to "%Y".
|
|
Karsten Hopp |
1f4116 |
Files: src/undo.c
|
|
Karsten Hopp |
1f4116 |
|
|
Karsten Hopp |
1f4116 |
|
|
Karsten Hopp |
1f4116 |
*** ../vim-7.3.106/src/undo.c 2011-01-22 00:11:42.000000000 +0100
|
|
Karsten Hopp |
1f4116 |
--- src/undo.c 2011-01-22 00:03:58.000000000 +0100
|
|
Karsten Hopp |
1f4116 |
***************
|
|
Karsten Hopp |
1f4116 |
*** 2884,2890 ****
|
|
Karsten Hopp |
1f4116 |
(void)strftime((char *)buf, buflen, "%m/%d %H:%M:%S", curtime);
|
|
Karsten Hopp |
1f4116 |
else
|
|
Karsten Hopp |
1f4116 |
/* long ago */
|
|
Karsten Hopp |
1f4116 |
! (void)strftime((char *)buf, buflen, "%y/%m/%d %H:%M:%S", curtime);
|
|
Karsten Hopp |
1f4116 |
}
|
|
Karsten Hopp |
1f4116 |
else
|
|
Karsten Hopp |
1f4116 |
#endif
|
|
Karsten Hopp |
1f4116 |
--- 2884,2890 ----
|
|
Karsten Hopp |
1f4116 |
(void)strftime((char *)buf, buflen, "%m/%d %H:%M:%S", curtime);
|
|
Karsten Hopp |
1f4116 |
else
|
|
Karsten Hopp |
1f4116 |
/* long ago */
|
|
Karsten Hopp |
1f4116 |
! (void)strftime((char *)buf, buflen, "%Y/%m/%d %H:%M:%S", curtime);
|
|
Karsten Hopp |
1f4116 |
}
|
|
Karsten Hopp |
1f4116 |
else
|
|
Karsten Hopp |
1f4116 |
#endif
|
|
Karsten Hopp |
1f4116 |
*** ../vim-7.3.106/src/version.c 2011-01-22 21:05:02.000000000 +0100
|
|
Karsten Hopp |
1f4116 |
--- src/version.c 2011-01-22 21:24:07.000000000 +0100
|
|
Karsten Hopp |
1f4116 |
***************
|
|
Karsten Hopp |
1f4116 |
*** 716,717 ****
|
|
Karsten Hopp |
1f4116 |
--- 716,719 ----
|
|
Karsten Hopp |
1f4116 |
{ /* Add new patch number below this line */
|
|
Karsten Hopp |
1f4116 |
+ /**/
|
|
Karsten Hopp |
1f4116 |
+ 107,
|
|
Karsten Hopp |
1f4116 |
/**/
|
|
Karsten Hopp |
1f4116 |
|
|
Karsten Hopp |
1f4116 |
--
|
|
Karsten Hopp |
1f4116 |
"The sun oozed over the horizon, shoved aside darkness, crept along the
|
|
Karsten Hopp |
1f4116 |
greensward, and, with sickly fingers, pushed through the castle window,
|
|
Karsten Hopp |
1f4116 |
revealing the pillaged princess, hand at throat, crown asunder, gaping
|
|
Karsten Hopp |
1f4116 |
in frenzied horror at the sated, sodden amphibian lying beside her,
|
|
Karsten Hopp |
1f4116 |
disbelieving the magnitude of the frog's deception, screaming madly,
|
|
Karsten Hopp |
1f4116 |
"You lied!"
|
|
Karsten Hopp |
1f4116 |
- Winner of the Bulwer-Lytton contest (San Jose State University),
|
|
Karsten Hopp |
1f4116 |
wherein one writes only the first line of a bad novel
|
|
Karsten Hopp |
1f4116 |
|
|
Karsten Hopp |
1f4116 |
/// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net \\\
|
|
Karsten Hopp |
1f4116 |
/// sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
|
|
Karsten Hopp |
1f4116 |
\\\ an exciting new programming language -- http://www.Zimbu.org ///
|
|
Karsten Hopp |
1f4116 |
\\\ help me help AIDS victims -- http://ICCF-Holland.org ///
|