1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2024-12-16 09:50:25 +00:00

Remove spurious @example from the elisp manual

* doc/lispref/macros.texi (Defining Macros): Remove spurious extra
pair of @example/@end example.

Copyright-paperwork-exempt: yes
This commit is contained in:
Colin Woodbury 2021-05-31 10:55:37 +02:00 committed by Lars Ingebrigtsen
parent 9c8bef5134
commit 0b1dfb5de6

View File

@ -240,7 +240,6 @@ they cannot be called interactively.
of constants and nonconstant parts. To make this easier, use the
@samp{`} syntax (@pxref{Backquote}). For example:
@example
@example
@group
(defmacro t-becomes-nil (variable)
@ -253,7 +252,6 @@ of constants and nonconstant parts. To make this easier, use the
@equiv{} (if (eq foo t) (setq foo nil))
@end group
@end example
@end example
@node Problems with Macros
@section Common Problems Using Macros