view src/protodef.h @ 28978:3c3bdb8069f5 v8.2.5011

patch 8.2.5011: Replacing an autocommand requires several lines Commit: https://github.com/vim/vim/commit/971f6825ee845828bd5c8869487928a3f32cd467 Author: Yegappan Lakshmanan <yegappan@yahoo.com> Date: Tue May 24 11:40:11 2022 +0100 patch 8.2.5011: Replacing an autocommand requires several lines Problem: Replacing an autocommand requires several lines. Solution: Add the "replace" flag to autocmd_add(). (Yegappan Lakshmanan, closes #10473)
author Bram Moolenaar <Bram@vim.org>
date Tue, 24 May 2022 12:45:05 +0200
parents 3e9b24eac417
children
line wrap: on
line source

/* vi:set ts=8 sts=4 sw=4 noet:
 *
 * VIM - Vi IMproved	by Bram Moolenaar
 *
 * Do ":help uganda"  in Vim to read copying and usage conditions.
 * Do ":help credits" in Vim to see a list of people who contributed.
 */

#ifdef PROTO
// cproto runs into trouble when these types are missing
typedef double _Float16;
typedef double _Float32;
typedef double _Float64;
typedef double _Float128;
typedef double _Float32x;
typedef double _Float64x;
#endif