aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDave Love2000-10-07 21:32:58 +0000
committerDave Love2000-10-07 21:32:58 +0000
commitc5c46a261726f71e1d3a78a42fc59322c78ca304 (patch)
tree5891b591243b88d7aea9a169e0b54e167f58275d
parentb3d38948498db783228d7b55646e399e92c293e5 (diff)
downloademacs-c5c46a261726f71e1d3a78a42fc59322c78ca304.tar.gz
emacs-c5c46a261726f71e1d3a78a42fc59322c78ca304.zip
Fix missing @ends.
-rw-r--r--man/emacs-mime.texi11
1 files changed, 7 insertions, 4 deletions
diff --git a/man/emacs-mime.texi b/man/emacs-mime.texi
index d227fd42b7a..c7090f55c94 100644
--- a/man/emacs-mime.texi
+++ b/man/emacs-mime.texi
@@ -22,8 +22,8 @@ Copyright (C) 1998,99,2000 Free Software Foundation, Inc.
22 22
23Permission is granted to copy, distribute and/or modify this document 23Permission is granted to copy, distribute and/or modify this document
24under the terms of the GNU Free Documentation License, Version 1.1 or 24under the terms of the GNU Free Documentation License, Version 1.1 or
25any later version published by the Free Software Foundation; with the 25any later version published by the Free Software Foundation; with no
26Invariant Sections being none, with the Front-Cover texts being ``A GNU 26Invariant Sections, with the Front-Cover texts being ``A GNU
27Manual'', and with the Back-Cover Texts as in (a) below. A copy of the 27Manual'', and with the Back-Cover Texts as in (a) below. A copy of the
28license is included in the section entitled ``GNU Free Documentation 28license is included in the section entitled ``GNU Free Documentation
29License'' in the Emacs manual. 29License'' in the Emacs manual.
@@ -245,7 +245,7 @@ Narrow the buffer to the header under point.
245@item mail-encode-encoded-word-region 245@item mail-encode-encoded-word-region
246@findex mail-encode-encoded-word-region 246@findex mail-encode-encoded-word-region
247Encode the non-ASCII words in the region. For instance, 247Encode the non-ASCII words in the region. For instance,
248@samp{Nave} is encoded as @samp{=?iso-8859-1?q?Na=EFve?=}. 248@samp{Naïve} is encoded as @samp{=?iso-8859-1?q?Na=EFve?=}.
249 249
250@item mail-encode-encoded-word-buffer 250@item mail-encode-encoded-word-buffer
251@findex mail-encode-encoded-word-buffer 251@findex mail-encode-encoded-word-buffer
@@ -576,10 +576,12 @@ The following functions are defined by the library:
576@deffn Command quoted-printable-decode-region @var{from} @var{to} &optional @var{coding-system} 576@deffn Command quoted-printable-decode-region @var{from} @var{to} &optional @var{coding-system}
577QP-decode all the encoded text in the region. If @var{coding-system} is 577QP-decode all the encoded text in the region. If @var{coding-system} is
578non-nil, decode bytes into characters with that coding-system. 578non-nil, decode bytes into characters with that coding-system.
579@end deffn
579 580
580@defun quoted-printable-decode-string @var{string} &optional @var{coding-system} 581@defun quoted-printable-decode-string @var{string} &optional @var{coding-system}
581Return a QP-encoded copy of @var{string}. If @var{coding-system} is 582Return a QP-encoded copy of @var{string}. If @var{coding-system} is
582non-nil, decode bytes into characters with that coding-system. 583non-nil, decode bytes into characters with that coding-system.
584@end defun
583 585
584@deffn Command quoted-printable-encode-region @var{from} @var{to} &optional @var{fold} @var{class} 586@deffn Command quoted-printable-encode-region @var{from} @var{to} &optional @var{fold} @var{class}
585QP-encode all the region. If @var{fold} is non-@var{nil}, fold lines at 587QP-encode all the region. If @var{fold} is non-@var{nil}, fold lines at
@@ -588,10 +590,11 @@ non-@code{nil}, translate the characters matched by that class in the
588form expected by @var{skip-chars-forward}. If variable 590form expected by @var{skip-chars-forward}. If variable
589@var{mm-use-ultra-safe-encoding} is defined and non-@code{nil}, fold 591@var{mm-use-ultra-safe-encoding} is defined and non-@code{nil}, fold
590lines unconditionally and encode lines starting with @samp{From }. 592lines unconditionally and encode lines starting with @samp{From }.
593@end deffn
591 594
592@defun quoted-printable-encode-string string 595@defun quoted-printable-encode-string string
593Return a QP-encoded copy of @var{string}. 596Return a QP-encoded copy of @var{string}.
594 597@end defun
595 598
596@node base64 599@node base64
597@section base64 600@section base64