annotate runtime/ftplugin/gitattributes.vim @ 31445:85d017b25e20
v9.0.1055
patch 9.0.1055: Coverity warns for using uninitialized memory
Commit: https://github.com/vim/vim/commit/f593fc891c7f6a6735b136878cc13012566ddd71
Author: Bram Moolenaar <Bram@vim.org>
Date: Wed Dec 14 13:50:02 2022 +0000
patch 9.0.1055: Coverity warns for using uninitialized memory
Problem: Coverity warns for using uninitialized memory.
Solution: Clear the "lhs" field earlier.
author |
Bram Moolenaar <Bram@vim.org> |
date |
Wed, 14 Dec 2022 15:00:05 +0100 |
parents |
fee9eccee266 |
children |
|
rev |
line source |
30202
|
1 " Vim filetype plugin
|
|
2 " Language: git attributes
|
|
3 " Maintainer: ObserverOfTime <chronobserver@disroot.org>
|
|
4 " Last Change: 2022 Sep 08
|
|
5
|
|
6 if exists('b:did_ftplugin')
|
|
7 finish
|
|
8 endif
|
|
9 let b:did_ftplugin = 1
|
|
10
|
|
11 setl comments=:# commentstring=#\ %s
|
|
12
|
|
13 let b:undo_ftplugin = 'setl com< cms<'
|