0
0
mirror of https://github.com/vim/vim.git synced 2025-09-27 04:14:06 -04:00

patch 9.0.1234: the code style has to be checked manually

Problem:    The code style has to be checked manually.
Solution:   Add basic code style checks in a test.  Fix or avoid uncovered
            problems.
This commit is contained in:
Bram Moolenaar
2023-01-22 21:14:53 +00:00
parent 3d79f0a430
commit ebfec1c531
34 changed files with 319 additions and 149 deletions

View File

@@ -274,14 +274,17 @@
# ifdef MSWIN
# ifndef isnan
# define isnan(x) _isnan(x)
static __inline int isinf(double x) { return !_finite(x) && !_isnan(x); }
static __inline int isinf(double x)
{ return !_finite(x) && !_isnan(x); }
# endif
# else
# ifndef HAVE_ISNAN
static inline int isnan(double x) { return x != x; }
static inline int isnan(double x)
{ return x != x; }
# endif
# ifndef HAVE_ISINF
static inline int isinf(double x) { return !isnan(x) && isnan(x - x); }
static inline int isinf(double x)
{ return !isnan(x) && isnan(x - x); }
# endif
# endif
# if !defined(INFINITY)
@@ -335,7 +338,8 @@
*/
#define VIM_CLEAR(p) \
do { \
if ((p) != NULL) { \
if ((p) != NULL) \
{ \
vim_free(p); \
(p) = NULL; \
} \