Patch 8.2.3964
Problem:    Some common lisp and scheme files not recognized.
Solution:   Recognize *.asd as lisp and *.sld as scheme. (Alex Vear,
            closes #9447)
Files:      runtime/filetype.vim, src/testdir/test_filetype.vim


*** ../vim-8.2.3963/runtime/filetype.vim        2021-12-27 10:35:48.420658287 
+0000
--- runtime/filetype.vim        2022-01-01 11:34:04.257019360 +0000
***************
*** 963,971 ****
  " Lisp (*.el = ELisp, *.cl = Common Lisp)
  " *.jl was removed, it's also used for Julia, better skip than guess wrong.
  if has("fname_case")
!   au BufNewFile,BufRead *.lsp,*.lisp,*.el,*.cl,*.L,.emacs,.sawfishrc setf lisp
  else
!   au BufNewFile,BufRead *.lsp,*.lisp,*.el,*.cl,.emacs,.sawfishrc setf lisp
  endif
  
  " SBCL implementation of Common Lisp
--- 963,971 ----
  " Lisp (*.el = ELisp, *.cl = Common Lisp)
  " *.jl was removed, it's also used for Julia, better skip than guess wrong.
  if has("fname_case")
!   au BufNewFile,BufRead *.lsp,*.lisp,*.asd,*.el,*.cl,*.L,.emacs,.sawfishrc 
setf lisp
  else
!   au BufNewFile,BufRead *.lsp,*.lisp,*.asd,*.el,*.cl,.emacs,.sawfishrc setf 
lisp
  endif
  
  " SBCL implementation of Common Lisp
***************
*** 1669,1675 ****
  au BufNewFile,BufRead *.zsh                   setf zsh
  
  " Scheme
! au BufNewFile,BufRead *.scm,*.ss,*.rkt,*.rktd,*.rktl  setf scheme
  
  " Screen RC
  au BufNewFile,BufRead .screenrc,screenrc      setf screen
--- 1669,1675 ----
  au BufNewFile,BufRead *.zsh                   setf zsh
  
  " Scheme
! au BufNewFile,BufRead *.scm,*.ss,*.sld,*.rkt,*.rktd,*.rktl    setf scheme
  
  " Screen RC
  au BufNewFile,BufRead .screenrc,screenrc      setf screen
*** ../vim-8.2.3963/src/testdir/test_filetype.vim       2021-12-27 
10:35:48.420658287 +0000
--- src/testdir/test_filetype.vim       2022-01-01 11:34:04.257019360 +0000
***************
*** 286,292 ****
      \ 'lilo': ['lilo.conf', 'lilo.conf-file'],
      \ 'limits': ['/etc/limits', '/etc/anylimits.conf', 
'/etc/anylimits.d/file.conf', '/etc/limits.conf', '/etc/limits.d/file.conf', 
'/etc/some-limits.conf', '/etc/some-limits.d/file.conf', 'any/etc/limits', 
'any/etc/limits.conf', 'any/etc/limits.d/file.conf', 
'any/etc/some-limits.conf', 'any/etc/some-limits.d/file.conf'],
      \ 'liquid': ['file.liquid'],
!     \ 'lisp': ['file.lsp', 'file.lisp', 'file.el', 'file.cl', '.emacs', 
'.sawfishrc', 'sbclrc', '.sbclrc'],
      \ 'lite': ['file.lite', 'file.lt'],
      \ 'litestep': ['/LiteStep/any/file.rc', 'any/LiteStep/any/file.rc'],
      \ 'loginaccess': ['/etc/login.access', 'any/etc/login.access'],
--- 286,292 ----
      \ 'lilo': ['lilo.conf', 'lilo.conf-file'],
      \ 'limits': ['/etc/limits', '/etc/anylimits.conf', 
'/etc/anylimits.d/file.conf', '/etc/limits.conf', '/etc/limits.d/file.conf', 
'/etc/some-limits.conf', '/etc/some-limits.d/file.conf', 'any/etc/limits', 
'any/etc/limits.conf', 'any/etc/limits.d/file.conf', 
'any/etc/some-limits.conf', 'any/etc/some-limits.d/file.conf'],
      \ 'liquid': ['file.liquid'],
!     \ 'lisp': ['file.lsp', 'file.lisp', 'file.asd', 'file.el', 'file.cl', 
'.emacs', '.sawfishrc', 'sbclrc', '.sbclrc'],
      \ 'lite': ['file.lite', 'file.lt'],
      \ 'litestep': ['/LiteStep/any/file.rc', 'any/LiteStep/any/file.rc'],
      \ 'loginaccess': ['/etc/login.access', 'any/etc/login.access'],
***************
*** 437,443 ****
      \ 'sather': ['file.sa'],
      \ 'sbt': ['file.sbt'],
      \ 'scala': ['file.scala', 'file.sc'],
!     \ 'scheme': ['file.scm', 'file.ss', 'file.rkt', 'file.rktd', 'file.rktl'],
      \ 'scilab': ['file.sci', 'file.sce'],
      \ 'screen': ['.screenrc', 'screenrc'],
      \ 'sexplib': ['file.sexp'],
--- 437,443 ----
      \ 'sather': ['file.sa'],
      \ 'sbt': ['file.sbt'],
      \ 'scala': ['file.scala', 'file.sc'],
!     \ 'scheme': ['file.scm', 'file.ss', 'file.sld', 'file.rkt', 'file.rktd', 
'file.rktl'],
      \ 'scilab': ['file.sci', 'file.sce'],
      \ 'screen': ['.screenrc', 'screenrc'],
      \ 'sexplib': ['file.sexp'],
*** ../vim-8.2.3963/src/version.c       2022-01-01 00:55:24.357180922 +0000
--- src/version.c       2022-01-01 11:38:14.972393454 +0000
***************
*** 751,752 ****
--- 751,754 ----
  {   /* Add new patch number below this line */
+ /**/
+     3964,
  /**/

-- 
hundred-and-one symptoms of being an internet addict:
174. You know what a listserv is.

 /// Bram Moolenaar -- [email protected] -- http://www.Moolenaar.net   \\\
///                                                                      \\\
\\\        sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ ///
 \\\            help me help AIDS victims -- http://ICCF-Holland.org    ///

-- 
-- 
You received this message from the "vim_dev" maillist.
Do not top-post! Type your reply below the text you are replying to.
For more information, visit http://www.vim.org/maillist.php

--- 
You received this message because you are subscribed to the Google Groups 
"vim_dev" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To view this discussion on the web visit 
https://groups.google.com/d/msgid/vim_dev/20220101113937.06F7D1C007F%40moolenaar.net.

Raspunde prin e-mail lui