Mercurial > vim
view runtime/ftplugin/xdefaults.vim @ 18819:ba8dc10a2c0d v8.1.2397
patch 8.1.2397: should not define __USE_XOPEN
Commit: https://github.com/vim/vim/commit/e7dd0deb3c4c4b1f55e28e5fe9a4ef4b76951b85
Author: Bram Moolenaar <Bram@vim.org>
Date: Thu Dec 5 23:07:06 2019 +0100
patch 8.1.2397: should not define __USE_XOPEN
Problem: Should not define __USE_XOPEN. _XOPEN_SOURCE is not needed for
Android.
Solution: Remove __USE_XOPEN and adjust #ifdefs. (Ozaki Kiichi,
closes #5322)
author | Bram Moolenaar <Bram@vim.org> |
---|---|
date | Thu, 05 Dec 2019 23:15:04 +0100 |
parents | 1218c5353e2b |
children | 7c7432a53a6c |
line wrap: on
line source
" Vim filetype plugin file " Language: X resources files like ~/.Xdefaults (xrdb) " 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< inc< fo<" setlocal comments=s1:/*,mb:*,ex:*/,:! commentstring& inc& setlocal formatoptions-=t formatoptions+=croql let &cpo = s:cpo_save unlet s:cpo_save