diff --git a/lisp/org.el b/lisp/org.el
index e000ac7bf..23563a694 100644
--- a/lisp/org.el
+++ b/lisp/org.el
@@ -11929,30 +11929,21 @@ keywords relative to each registered export back-end."
"TITLE:" "TODO:" "TYP_TODO:" "SELECT_TAGS:" "EXCLUDE_TAGS:"))
(defcustom org-structure-template-alist
- '(("s" "#+BEGIN_SRC ?\n\n#+END_SRC"
- "\n\n")
- ("e" "#+BEGIN_EXAMPLE\n?\n#+END_EXAMPLE"
- "\n?\n")
- ("q" "#+BEGIN_QUOTE\n?\n#+END_QUOTE"
- "\n?\n
")
- ("v" "#+BEGIN_VERSE\n?\n#+END_VERSE"
- "\n?\n")
- ("V" "#+BEGIN_VERBATIM\n?\n#+END_VERBATIM"
- "\n?\n")
- ("c" "#+BEGIN_CENTER\n?\n#+END_CENTER"
- "
\n?\n")
+ '(("s" "#+BEGIN_SRC ?\n\n#+END_SRC" "\n\n")
+ ("e" "#+BEGIN_EXAMPLE\n?\n#+END_EXAMPLE" "\n?\n")
+ ("q" "#+BEGIN_QUOTE\n?\n#+END_QUOTE" "\n?\n
")
+ ("v" "#+BEGIN_VERSE\n?\n#+END_VERSE" "\n?\n")
+ ("V" "#+BEGIN_VERBATIM\n?\n#+END_VERBATIM" "\n?\n")
+ ("c" "#+BEGIN_CENTER\n?\n#+END_CENTER" "\n?\n")
("l" "#+BEGIN_LaTeX\n?\n#+END_LaTeX"
"\n?\n")
- ("L" "#+LaTeX: "
- "?")
+ ("L" "#+LaTeX: " "?")
("h" "#+BEGIN_HTML\n?\n#+END_HTML"
"\n?\n")
- ("H" "#+HTML: "
- "?")
- ("a" "#+BEGIN_ASCII\n?\n#+END_ASCII")
- ("A" "#+ASCII: ")
- ("i" "#+INDEX: ?"
- "#+INDEX: ?")
+ ("H" "#+HTML: " "?")
+ ("a" "#+BEGIN_ASCII\n?\n#+END_ASCII" "")
+ ("A" "#+ASCII: " "")
+ ("i" "#+INDEX: ?" "#+INDEX: ?")
("I" "#+INCLUDE: %file ?"
""))
"Structure completion elements.
@@ -11967,9 +11958,10 @@ the default when the /org-mtags.el/ module has been loaded. See also the
variable `org-mtags-prefer-muse-templates'."
:group 'org-completion
:type '(repeat
- (string :tag "Key")
- (string :tag "Template")
- (string :tag "Muse Template")))
+ (list
+ (string :tag "Key")
+ (string :tag "Template")
+ (string :tag "Muse Template"))))
(defun org-try-structure-completion ()
"Try to complete a structure template before point.