patch 9.1.1373: 'completeopt' checking logic can be simplified
Problem: Flag checking logic uses a temporary variable and multiple
bitwise operations in insexpand.c
Solution: Consolidate into a single equality check using bitwise OR and
comparison (glepnir)
closes: #17276
Signed-off-by: glepnir <glephunter@gmail.com>
Signed-off-by: Christian Brabandt <cb@256bit.org>
diff --git a/src/insexpand.c b/src/insexpand.c
index ade7bb7..3839586 100644
--- a/src/insexpand.c
+++ b/src/insexpand.c
@@ -805,9 +805,7 @@
static int
is_nearest_active(void)
{
- unsigned int flags = get_cot_flags();
-
- return (flags & COT_NEAREST) && !(flags & COT_FUZZY);
+ return (get_cot_flags() & (COT_NEAREST | COT_FUZZY)) == COT_NEAREST;
}
/*
diff --git a/src/version.c b/src/version.c
index fb1f45b..5b85a2b 100644
--- a/src/version.c
+++ b/src/version.c
@@ -705,6 +705,8 @@
static int included_patches[] =
{ /* Add new patch number below this line */
/**/
+ 1373,
+/**/
1372,
/**/
1371,