patch 8.1.1667: flags for Ex commands may clash with other symbols

Problem:    Flags for Ex commands may clash with other symbols.
Solution:   Prepend with EX_.
diff --git a/src/evalfunc.c b/src/evalfunc.c
index b699899..4ee0d5d 100644
--- a/src/evalfunc.c
+++ b/src/evalfunc.c
@@ -3547,7 +3547,7 @@
     memset(&eap, 0, sizeof(eap));
     eap.cmd = cmdstr;
     eap.arg = cmdstr;
-    eap.argt |= NOSPC;
+    eap.argt |= EX_NOSPC;
     eap.usefilter = FALSE;
     eap.nextcmd = NULL;
     eap.cmdidx = CMD_USER;