diff options
| author | Eli Zaretskii | 2017-09-06 21:00:29 +0300 |
|---|---|---|
| committer | Eli Zaretskii | 2017-09-06 21:00:29 +0300 |
| commit | 1436ce83d39112c44c434e95d6bd2e2320b5c73d (patch) | |
| tree | ac5478b293b869bf480103eb804032f6eff1717d | |
| parent | 9604f9cd33bcbc921fd18e894fdd8a98012fd09d (diff) | |
| download | emacs-1436ce83d39112c44c434e95d6bd2e2320b5c73d.tar.gz emacs-1436ce83d39112c44c434e95d6bd2e2320b5c73d.zip | |
Fix a minor markup problem in ELisp manual
* doc/lispref/functions.texi (Mapping Functions): Fix the order of
@example and @group. For the details, see
http://lists.gnu.org/archive/html/bug-texinfo/2017-09/msg00007.html.
| -rw-r--r-- | doc/lispref/functions.texi | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/lispref/functions.texi b/doc/lispref/functions.texi index 0d407ab966b..116c2990ba2 100644 --- a/doc/lispref/functions.texi +++ b/doc/lispref/functions.texi | |||
| @@ -994,16 +994,16 @@ the results (which must be lists), by altering the results (using | |||
| 994 | @code{nconc}; @pxref{Rearrangement}). Like with @code{mapcar}, | 994 | @code{nconc}; @pxref{Rearrangement}). Like with @code{mapcar}, |
| 995 | @var{sequence} can be of any type except a char-table. | 995 | @var{sequence} can be of any type except a char-table. |
| 996 | 996 | ||
| 997 | @group | ||
| 998 | @example | 997 | @example |
| 998 | @group | ||
| 999 | ;; @r{Contrast this:} | 999 | ;; @r{Contrast this:} |
| 1000 | (mapcar 'list '(a b c d)) | 1000 | (mapcar 'list '(a b c d)) |
| 1001 | @result{} ((a) (b) (c) (d)) | 1001 | @result{} ((a) (b) (c) (d)) |
| 1002 | ;; @r{with this:} | 1002 | ;; @r{with this:} |
| 1003 | (mapcan 'list '(a b c d)) | 1003 | (mapcan 'list '(a b c d)) |
| 1004 | @result{} (a b c d) | 1004 | @result{} (a b c d) |
| 1005 | @end example | ||
| 1006 | @end group | 1005 | @end group |
| 1006 | @end example | ||
| 1007 | @end defun | 1007 | @end defun |
| 1008 | 1008 | ||
| 1009 | @defun mapc function sequence | 1009 | @defun mapc function sequence |