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.1 / 7.1.062 < prev    next >
Encoding:
Internet Message Format  |  2007-11-19  |  1.5 KB

  1. To: vim-dev@vim.org
  2. Subject: patch 7.1.062
  3. Fcc: outbox
  4. From: Bram Moolenaar <Bram@moolenaar.net>
  5. Mime-Version: 1.0
  6. Content-Type: text/plain; charset=ISO-8859-1
  7. Content-Transfer-Encoding: 8bit
  8. ------------
  9.  
  10. Patch 7.1.062 (after 7.1.038)
  11. Problem:    Indents of C comments can be wrong. (John Mullin)
  12. Solution:   Adjust ind_len. (Chris Lubinski)
  13. Files:        src/misc1.c
  14.  
  15.  
  16. *** ../vim-7.1.061/src/misc1.c    Mon Aug  6 22:27:13 2007
  17. --- src/misc1.c    Fri Aug 10 19:41:42 2007
  18. ***************
  19. *** 222,228 ****
  20.        * than old) */
  21.       while (vim_iswhite(*p))
  22.           (void)*p++;
  23. !     todo = size-ind_done;
  24.       }
  25.       else
  26.       {
  27. --- 222,231 ----
  28.        * than old) */
  29.       while (vim_iswhite(*p))
  30.           (void)*p++;
  31. !     todo = size - ind_done;
  32. !     ind_len += todo;    /* Set total length of indent in characters,
  33. !                  * which may have been undercounted until now  */
  34.       }
  35.       else
  36.       {
  37. *** ../vim-7.1.061/src/version.c    Sat Aug 11 13:57:31 2007
  38. --- src/version.c    Sat Aug 11 14:30:52 2007
  39. ***************
  40. *** 668,669 ****
  41. --- 668,671 ----
  42.   {   /* Add new patch number below this line */
  43. + /**/
  44. +     62,
  45.   /**/
  46.  
  47. -- 
  48. hundred-and-one symptoms of being an internet addict:
  49. 120. You ask a friend, "What's that big shiny thing?" He says, "It's the sun."
  50.  
  51.  /// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net   \\\
  52. ///        sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
  53. \\\        download, build and distribute -- http://www.A-A-P.org        ///
  54.  \\\            help me help AIDS victims -- http://ICCF-Holland.org    ///
  55.