diff options
| author | Basil L. Contovounesios | 2019-10-13 16:36:02 +0100 |
|---|---|---|
| committer | Basil L. Contovounesios | 2019-10-13 16:40:23 +0100 |
| commit | fc759eb9b3018394d14e62f12cb4a5c5585c38f2 (patch) | |
| tree | d6312faadfdabffcde6121c924411a608dc4b735 | |
| parent | d9a01dcd9fe2a0e5f84b708cdd34c3e7e8fb9189 (diff) | |
| download | emacs-fc759eb9b3018394d14e62f12cb4a5c5585c38f2.tar.gz emacs-fc759eb9b3018394d14e62f12cb4a5c5585c38f2.zip | |
Fix with-coding-priority markup in Elisp manual
* doc/lispref/nonascii.texi (Specifying Coding Systems): Don't use
'&rest' in conjunction with 'body...' in arglist of
with-coding-priority. Fix typo and cross-referencing (2-arg @pxref
adds a trailing period).
| -rw-r--r-- | doc/lispref/nonascii.texi | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/doc/lispref/nonascii.texi b/doc/lispref/nonascii.texi index 612c362f4a2..a3789dd6678 100644 --- a/doc/lispref/nonascii.texi +++ b/doc/lispref/nonascii.texi | |||
| @@ -1821,11 +1821,11 @@ priority list for coding systems, thus making their priority higher | |||
| 1821 | than all the rest. | 1821 | than all the rest. |
| 1822 | @end defun | 1822 | @end defun |
| 1823 | 1823 | ||
| 1824 | @defmac with-coding-priority coding-systems &rest body@dots{} | 1824 | @defmac with-coding-priority coding-systems &rest body |
| 1825 | This macro execute @var{body}, like @code{progn} does | 1825 | This macro executes @var{body}, like @code{progn} does |
| 1826 | (@pxref{Sequencing, progn}), with @var{coding-systems} at the front of | 1826 | (@pxref{Sequencing}), with @var{coding-systems} at the front of the |
| 1827 | the priority list for coding systems. @var{coding-systems} should be | 1827 | priority list for coding systems. @var{coding-systems} should be a |
| 1828 | a list of coding systems to prefer during execution of @var{body}. | 1828 | list of coding systems to prefer during execution of @var{body}. |
| 1829 | @end defmac | 1829 | @end defmac |
| 1830 | 1830 | ||
| 1831 | @node Explicit Encoding | 1831 | @node Explicit Encoding |