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 / old / 5.6.019 < prev    next >
Encoding:
Internet Message Format  |  2000-03-24  |  1.6 KB

  1. To: vim-dev@vim.org
  2. Subject: Patch 5.6.019
  3. Fcc: outbox
  4. From: Bram Moolenaar <Bram@moolenaar.net>
  5. ------------
  6.  
  7. Patch 5.6.019
  8. Problem:    "snd.c", "snd.java", etc. were recognized as "mail" filetype.
  9. Solution:   Make pattern for mail filetype more strict.
  10. Files:        runtime/filetype.vim
  11.  
  12.  
  13. *** ../vim-5.6.18/runtime/filetype.vim    Wed Jan 12 22:16:44 2000
  14. --- runtime/filetype.vim    Sat Mar 25 12:14:16 2000
  15. ***************
  16. *** 285,291 ****
  17.   au BufNewFile,BufRead *.m4            if expand("<afile>") !~?  "html.m4$" | set ft=m4 | endif
  18.   
  19.   " Mail (for Elm, trn and rn)
  20. ! au BufNewFile,BufRead snd.*,.letter,.letter.[0-9]\+,.followup,.article,.article.[0-9]\+,pico.[0-9]\+,mutt*[0-9],ae[0-9]\+.txt set ft=mail
  21.   
  22.   " Makefile
  23.   au BufNewFile,BufRead [mM]akefile*,GNUmakefile,*.mk,*.mak,*.dsp set ft=make
  24. --- 291,297 ----
  25.   au BufNewFile,BufRead *.m4            if expand("<afile>") !~?  "html.m4$" | set ft=m4 | endif
  26.   
  27.   " Mail (for Elm, trn and rn)
  28. ! au BufNewFile,BufRead snd.\d\+,.letter,.letter.\d\+,.followup,.article,.article.\d\+,pico.\d\+,mutt-*-\d\+,ae\d\+.txt set ft=mail
  29.   
  30.   " Makefile
  31.   au BufNewFile,BufRead [mM]akefile*,GNUmakefile,*.mk,*.mak,*.dsp set ft=make
  32. *** ../vim-5.6.18/src/version.c    Sat Mar 25 14:34:46 2000
  33. --- src/version.c    Sat Mar 25 14:38:40 2000
  34. ***************
  35. *** 420,421 ****
  36. --- 420,423 ----
  37.   {   /* Add new patch number below this line */
  38. + /**/
  39. +     19,
  40.   /**/
  41.  
  42. -- 
  43. Linux is just like a wigwam: no Windows, no Gates and an Apache inside.
  44.  
  45. /-/-- Bram Moolenaar --- Bram@moolenaar.net --- http://www.moolenaar.net --\-\
  46. \-\-- Vim: http://www.vim.org ---- ICCF Holland: http://www.vim.org/iccf --/-/
  47.