]> git.eshelyaron.com Git - emacs.git/commitdiff
Remove spurious @example from the elisp manual
authorColin Woodbury <colin@fosskers.ca>
Mon, 31 May 2021 08:55:37 +0000 (10:55 +0200)
committerLars Ingebrigtsen <larsi@gnus.org>
Mon, 31 May 2021 08:55:37 +0000 (10:55 +0200)
* doc/lispref/macros.texi (Defining Macros): Remove spurious extra
pair of @example/@end example.

Copyright-paperwork-exempt: yes

doc/lispref/macros.texi

index b8df363614dd3573bfd45a16805c8a9b2e0afa08..cf23ecb9d4e8178f0e65be5763f65acfa608b547 100644 (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