Mercurial > vim
view runtime/ftplugin/rnc.vim @ 14011:8631b54ae2a2 v8.1.0023
patch 8.1.0023: gcc 8.1 warns for use of strncpy()
commit https://github.com/vim/vim/commit/22c105640cdef25d98390f973d2ed53dd9039f6e
Author: Bram Moolenaar <Bram@vim.org>
Date: Sat May 26 17:35:27 2018 +0200
patch 8.1.0023: gcc 8.1 warns for use of strncpy()
Problem: gcc 8.1 warns for use of strncpy(). (John Marriott)
Solution: Use mch_memmove() instead of STRNCPY().
author | Christian Brabandt <cb@256bit.org> |
---|---|
date | Sat, 26 May 2018 17:45:06 +0200 |
parents | 1218c5353e2b |
children |
line wrap: on
line source
" Vim filetype plugin file " Language: Relax NG compact syntax " 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=:# commentstring=#\ %s formatoptions-=t formatoptions+=croql let &cpo = s:cpo_save unlet s:cpo_save