patch 8.2.3392: augroup completion escapes regexp pattern characters

Problem:    augroup completion escapes regexp pattern characters.
Solution:   Do not escape the augroup name. (closes #8826)
diff --git a/src/cmdexpand.c b/src/cmdexpand.c
index 58ba759..6c92957 100644
--- a/src/cmdexpand.c
+++ b/src/cmdexpand.c
@@ -2134,8 +2134,8 @@
 	    {EXPAND_SYNTIME, get_syntime_arg, TRUE, TRUE},
 # endif
 	    {EXPAND_HIGHLIGHT, get_highlight_name, TRUE, TRUE},
-	    {EXPAND_EVENTS, get_event_name, TRUE, TRUE},
-	    {EXPAND_AUGROUP, get_augroup_name, TRUE, TRUE},
+	    {EXPAND_EVENTS, get_event_name, TRUE, FALSE},
+	    {EXPAND_AUGROUP, get_augroup_name, TRUE, FALSE},
 # ifdef FEAT_CSCOPE
 	    {EXPAND_CSCOPE, get_cscope_name, TRUE, TRUE},
 # endif
diff --git a/src/testdir/test_cmdline.vim b/src/testdir/test_cmdline.vim
index 341a0f1..7ed626d 100644
--- a/src/testdir/test_cmdline.vim
+++ b/src/testdir/test_cmdline.vim
@@ -876,11 +876,13 @@
   call delete('Xfile2')
 
   " completion for the :augroup command
-  augroup XTest
+  augroup XTest.test
   augroup END
   call feedkeys(":augroup X\<C-A>\<C-B>\"\<CR>", 'xt')
-  call assert_equal("\"augroup XTest", @:)
-  augroup! XTest
+  call assert_equal("\"augroup XTest.test", @:)
+  call feedkeys(":au X\<C-A>\<C-B>\"\<CR>", 'xt')
+  call assert_equal("\"au XTest.test", @:)
+  augroup! XTest.test
 
   " completion for the :unlet command
   call feedkeys(":unlet one two\<C-A>\<C-B>\"\<CR>", 'xt')
diff --git a/src/version.c b/src/version.c
index b574d5d..9f67d79 100644
--- a/src/version.c
+++ b/src/version.c
@@ -756,6 +756,8 @@
 static int included_patches[] =
 {   /* Add new patch number below this line */
 /**/
+    3392,
+/**/
     3391,
 /**/
     3390,