aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBasil L. Contovounesios2019-10-13 16:36:02 +0100
committerBasil L. Contovounesios2019-10-13 16:40:23 +0100
commitfc759eb9b3018394d14e62f12cb4a5c5585c38f2 (patch)
treed6312faadfdabffcde6121c924411a608dc4b735
parentd9a01dcd9fe2a0e5f84b708cdd34c3e7e8fb9189 (diff)
downloademacs-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.texi10
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
1821than all the rest. 1821than 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
1825This macro execute @var{body}, like @code{progn} does 1825This 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
1827the priority list for coding systems. @var{coding-systems} should be 1827priority list for coding systems. @var{coding-systems} should be a
1828a list of coding systems to prefer during execution of @var{body}. 1828list 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