From ce6a5fb94bdc62f00c50ffa1bfaf291da01b4a6e Mon Sep 17 00:00:00 2001 From: "Justin M. Keyes" Date: Fri, 18 Jan 2019 02:43:38 +0100 Subject: PVS/V560: expression is always true This macro serves as a sanity-check / documentation. --- src/nvim/regexp.c | 1 + 1 file changed, 1 insertion(+) (limited to 'src') diff --git a/src/nvim/regexp.c b/src/nvim/regexp.c index 0b9e1cfdec..a70b150e9b 100644 --- a/src/nvim/regexp.c +++ b/src/nvim/regexp.c @@ -230,6 +230,7 @@ #define UPPER 47 /* Match uppercase char */ #define NUPPER 48 /* Match non-uppercase char */ #define LAST_NL NUPPER + ADD_NL +// -V:WITH_NL:560 #define WITH_NL(op) ((op) >= FIRST_NL && (op) <= LAST_NL) #define MOPEN 80 // -89 Mark this point in input as start of -- cgit