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 / 6.2.488 < prev    next >
Encoding:
Internet Message Format  |  2004-04-19  |  1.4 KB

  1. To: vim-dev@vim.org
  2. Subject: Patch 6.2.488
  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 6.2.488
  11. Problem:    Missing ")" in *.ch filetype detection.
  12. Solution:   Add the ")".  (Ciaran McCreesh)
  13. Files:        runtime/filetype.vim
  14.  
  15.  
  16. *** ../vim-6.2.487/runtime/filetype.vim    Sun Jan 25 20:16:26 2004
  17. --- runtime/filetype.vim    Tue Apr 20 17:00:05 2004
  18. ***************
  19. *** 302,308 ****
  20.         setf change
  21.         return
  22.       endif
  23. !     if lnum == 1 && (getline(1)[0] == '#' || getline(1)[0] == '!'
  24.         setf ch
  25.         return
  26.       endif
  27. --- 310,316 ----
  28.         setf change
  29.         return
  30.       endif
  31. !     if lnum == 1 && (getline(1)[0] == '#' || getline(1)[0] == '!')
  32.         setf ch
  33.         return
  34.       endif
  35. *** ../vim-6.2.487/src/version.c    Tue Apr 20 17:19:18 2004
  36. --- src/version.c    Tue Apr 20 17:21:07 2004
  37. ***************
  38. *** 639,640 ****
  39. --- 639,642 ----
  40.   {   /* Add new patch number below this line */
  41. + /**/
  42. +     488,
  43.   /**/
  44.  
  45. -- 
  46. If you don't get everything you want, think of
  47. everything you didn't get and don't want.
  48.  
  49.  /// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net   \\\
  50. ///        Sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
  51. \\\              Project leader for A-A-P -- http://www.A-A-P.org        ///
  52.  \\\  Buy at Amazon and help AIDS victims -- http://ICCF.nl/click1.html ///
  53.