view runtime/ftplugin/xf86conf.vim @ 15142:7713ceb8c593 v8.1.0581

patch 8.1.0581: double free without the text properties feature commit https://github.com/vim/vim/commit/ca79a5fc3b383dcfc8ed2077688ea69dafadc6e7 Author: Bram Moolenaar <Bram@vim.org> Date: Thu Dec 13 23:16:36 2018 +0100 patch 8.1.0581: double free without the text properties feature Problem: Double free without the text properties feature. Solution: Reset the dirty flag.
author Bram Moolenaar <Bram@vim.org>
date Thu, 13 Dec 2018 23:30:06 +0100
parents 1218c5353e2b
children
line wrap: on
line source

" Vim filetype plugin file
" Language:             XFree86 Configuration 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=:# commentstring=#\ %s formatoptions-=t formatoptions+=croql

let &cpo = s:cpo_save
unlet s:cpo_save