Mercurial > vim
annotate runtime/ftplugin/bash.vim @ 25583:7d3c296a117f v8.2.3328
patch 8.2.3328: Coverity error for not checking return value
Commit: https://github.com/vim/vim/commit/b85d3627d9a7b41d603c58a16d0ddbf6b88beeaf
Author: Bram Moolenaar <Bram@vim.org>
Date: Wed Aug 11 15:54:59 2021 +0200
patch 8.2.3328: Coverity error for not checking return value
Problem: Coverity error for not checking return value.
Solution: Check value is not negative.
author | Bram Moolenaar <Bram@vim.org> |
---|---|
date | Wed, 11 Aug 2021 16:00:06 +0200 |
parents | 03b854983b14 |
children | 71cbad0921c9 |
rev | line source |
---|---|
15512 | 1 " Vim filetype plugin file |
2 " Language: bash | |
3 " Maintainer: Bram Moolenaar | |
4 " Last Changed: 2019 Jan 12 | |
5 " | |
6 " This is not a real filetype plugin. It allows for someone to set 'filetype' | |
7 " to "bash" in the modeline, and gets the effect of filetype "sh" with | |
8 " b:is_bash set. Idea from Mahmode Al-Qudsi. | |
9 | |
10 if exists("b:did_ftplugin") | |
11 finish | |
12 endif | |
13 | |
18186 | 14 unlet! b:is_sh |
15 unlet! b:is_kornshell | |
15512 | 16 let b:is_bash = 1 |
17 | |
18186 | 18 runtime! ftplugin/sh.vim ftplugin/sh_*.vim ftplugin/sh/*.vim |
15512 | 19 |
18186 | 20 " vim: ts=8 |