Mercurial > vim
view runtime/ftplugin/sieve.vim @ 34605:6d3a5ef458cd v9.1.0194
patch 9.1.0194: gcc complains about uninitialized var
Commit: https://github.com/vim/vim/commit/9eb236f455df75af858a37a3d98f190c977deaf4
Author: Christian Brabandt <cb@256bit.org>
Date: Thu Mar 21 20:12:59 2024 +0100
patch 9.1.0194: gcc complains about uninitialized var
Problem: gcc complains about uninitialized var
(Tony Mechelynck)
Solution: initialize to NULL
Signed-off-by: Christian Brabandt <cb@256bit.org>
author | Christian Brabandt <cb@256bit.org> |
---|---|
date | Thu, 21 Mar 2024 20:15:02 +0100 |
parents | 1218c5353e2b |
children |
line wrap: on
line source
" Vim filetype plugin file " Language: Sieve filtering language input file " Previous Maintainer: Nikolai Weibull <now@bitwi.se> " Latest Revision: 2008-07-09 if exists("b:did_ftplugin") finish endif let b:did_ftplugin = 1 let s:cpo_save = &cpo set cpo&vim let b:undo_ftplugin = "setl com< cms< fo<" setlocal comments=s1:/*,mb:*,ex:*/,:# commentstring=#\ %s setlocal formatoptions-=t formatoptions+=croql let &cpo = s:cpo_save unlet s:cpo_save