home *** CD-ROM | disk | FTP | other *** search
/ vim.ftp.fu-berlin.de / 2015-02-03.vim.ftp.fu-berlin.de.tar / vim.ftp.fu-berlin.de / patches / 7.3 / 7.3.107 < prev    next >
Encoding:
Internet Message Format  |  2012-11-20  |  1.9 KB

  1. To: vim_dev@googlegroups.com
  2. Subject: Patch 7.3.107
  3. Fcc: outbox
  4. From: Bram Moolenaar <Bram@moolenaar.net>
  5. Mime-Version: 1.0
  6. Content-Type: text/plain; charset=UTF-8
  7. Content-Transfer-Encoding: 8bit
  8. ------------
  9.  
  10. Patch 7.3.107
  11. Problem:    Year number for :undolist can be confused with month or day.
  12. Solution:   Change "%y" to "%Y".
  13. Files:      src/undo.c
  14.  
  15.  
  16. *** ../vim-7.3.106/src/undo.c    2011-01-22 00:11:42.000000000 +0100
  17. --- src/undo.c    2011-01-22 00:03:58.000000000 +0100
  18. ***************
  19. *** 2884,2890 ****
  20.           (void)strftime((char *)buf, buflen, "%m/%d %H:%M:%S", curtime);
  21.       else
  22.           /* long ago */
  23. !         (void)strftime((char *)buf, buflen, "%y/%m/%d %H:%M:%S", curtime);
  24.       }
  25.       else
  26.   #endif
  27. --- 2884,2890 ----
  28.           (void)strftime((char *)buf, buflen, "%m/%d %H:%M:%S", curtime);
  29.       else
  30.           /* long ago */
  31. !         (void)strftime((char *)buf, buflen, "%Y/%m/%d %H:%M:%S", curtime);
  32.       }
  33.       else
  34.   #endif
  35. *** ../vim-7.3.106/src/version.c    2011-01-22 21:05:02.000000000 +0100
  36. --- src/version.c    2011-01-22 21:24:07.000000000 +0100
  37. ***************
  38. *** 716,717 ****
  39. --- 716,719 ----
  40.   {   /* Add new patch number below this line */
  41. + /**/
  42. +     107,
  43.   /**/
  44.  
  45. -- 
  46. "The sun oozed over the horizon, shoved aside darkness, crept along the
  47. greensward, and, with sickly fingers, pushed through the castle window,
  48. revealing the pillaged princess, hand at throat, crown asunder, gaping
  49. in frenzied horror at the sated, sodden amphibian lying beside her,
  50. disbelieving the magnitude of the frog's deception, screaming madly,
  51. "You lied!"
  52.     - Winner of the Bulwer-Lytton contest (San Jose State University),
  53.       wherein one writes only the first line of a bad novel
  54.  
  55.  /// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net   \\\
  56. ///        sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
  57. \\\  an exciting new programming language -- http://www.Zimbu.org        ///
  58.  \\\            help me help AIDS victims -- http://ICCF-Holland.org    ///
  59.