patch 8.0.1792: MS-Windows users expect -? to work like --help
Problem: MS-Windows users expect -? to work like --help.
Solution: Add -?. (Christian Brabandt, closes #2867)
diff --git a/src/main.c b/src/main.c
index 3b366b5..e2686b8 100644
--- a/src/main.c
+++ b/src/main.c
@@ -2014,6 +2014,7 @@
#endif
break;
+ case '?': /* "-?" give help message (for MS-Windows) */
case 'h': /* "-h" give help message */
#ifdef FEAT_GUI_GNOME
/* Tell usage() to exit for "gvim". */
diff --git a/src/version.c b/src/version.c
index 9dd2895..b0c8ed7 100644
--- a/src/version.c
+++ b/src/version.c
@@ -762,6 +762,8 @@
static int included_patches[] =
{ /* Add new patch number below this line */
/**/
+ 1792,
+/**/
1791,
/**/
1790,