patch 9.0.1148: cmdline test fails in the GUI
Problem: Cmdline test fails in the GUI.
Solution: Skip the test when running in the GUI.
diff --git a/src/testdir/test_cmdline.vim b/src/testdir/test_cmdline.vim
index 91ff6f1..a832306 100644
--- a/src/testdir/test_cmdline.vim
+++ b/src/testdir/test_cmdline.vim
@@ -655,6 +655,9 @@
endfunc
func Test_multibyte_expression()
+ " Get a dialog in the GUI
+ CheckNotGui
+
" This was using uninitialized memory.
let lines =<< trim END
set verbose=6
diff --git a/src/version.c b/src/version.c
index 39f7a0b..a12cda2 100644
--- a/src/version.c
+++ b/src/version.c
@@ -696,6 +696,8 @@
static int included_patches[] =
{ /* Add new patch number below this line */
/**/
+ 1148,
+/**/
1147,
/**/
1146,