diff options
| author | Colin Woodbury | 2021-05-31 10:55:37 +0200 |
|---|---|---|
| committer | Lars Ingebrigtsen | 2021-05-31 10:55:37 +0200 |
| commit | 0b1dfb5de601c945e88e98c8fc40611d015a8b77 (patch) | |
| tree | 45466a1965c284d2c9e2380134791d98571d987a | |
| parent | 9c8bef5134b054e7958c33b9bd332a125fc7121b (diff) | |
| download | emacs-0b1dfb5de601c945e88e98c8fc40611d015a8b77.tar.gz emacs-0b1dfb5de601c945e88e98c8fc40611d015a8b77.zip | |
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
| -rw-r--r-- | doc/lispref/macros.texi | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/doc/lispref/macros.texi b/doc/lispref/macros.texi index b8df363614d..cf23ecb9d4e 100644 --- a/doc/lispref/macros.texi +++ b/doc/lispref/macros.texi | |||
| @@ -241,7 +241,6 @@ of constants and nonconstant parts. To make this easier, use the | |||
| 241 | @samp{`} syntax (@pxref{Backquote}). For example: | 241 | @samp{`} syntax (@pxref{Backquote}). For example: |
| 242 | 242 | ||
| 243 | @example | 243 | @example |
| 244 | @example | ||
| 245 | @group | 244 | @group |
| 246 | (defmacro t-becomes-nil (variable) | 245 | (defmacro t-becomes-nil (variable) |
| 247 | `(if (eq ,variable t) | 246 | `(if (eq ,variable t) |
| @@ -253,7 +252,6 @@ of constants and nonconstant parts. To make this easier, use the | |||
| 253 | @equiv{} (if (eq foo t) (setq foo nil)) | 252 | @equiv{} (if (eq foo t) (setq foo nil)) |
| 254 | @end group | 253 | @end group |
| 255 | @end example | 254 | @end example |
| 256 | @end example | ||
| 257 | 255 | ||
| 258 | @node Problems with Macros | 256 | @node Problems with Macros |
| 259 | @section Common Problems Using Macros | 257 | @section Common Problems Using Macros |