* lisp/emacs-lisp/backquote.el (backquote): Note that ` is used
for other things in some macros (bug#25462).
\\=`(a ,b c) => (a (ba bb bc) c) ; insert the value of b
\\=`(a ,@b c) => (a ba bb bc c) ; splice in the value of b
-Vectors work just like lists. Nested backquotes are permitted."
+Vectors work just like lists. Nested backquotes are permitted.
+
+Note that some macros, such as `pcase', use this symbol for other
+purposes."
(cdr (backquote-process structure)))
;; GNU Emacs has no reader macros