patch 9.1.0923: wrong MIN macro in popupmenu.c

Problem:  wrong MIN macro in popupmenu.c (after v9.1.0921)
          (zeertzjq)
Solution: change it to MAX()

Co-authored-by: glepnir <glephunter@gmail.com>
Signed-off-by: glepnir <glephunter@gmail.com>
Signed-off-by: Christian Brabandt <cb@256bit.org>
diff --git a/src/popupmenu.c b/src/popupmenu.c
index 1856b6b..1faabf4 100644
--- a/src/popupmenu.c
+++ b/src/popupmenu.c
@@ -327,7 +327,7 @@
 		    }
 		}
 		else if (pum_width > content_width && pum_width > p_pw)
-		    pum_width = MIN(content_width, p_pw);
+		    pum_width = MAX(content_width, p_pw);
 	    }
 
 	}
diff --git a/src/version.c b/src/version.c
index 1c2398e..47ff826 100644
--- a/src/version.c
+++ b/src/version.c
@@ -705,6 +705,8 @@
 static int included_patches[] =
 {   /* Add new patch number below this line */
 /**/
+    922,
+/**/
     921,
 /**/
     920,