diff options
author | Dave Love <fx@gnu.org> | 2000-10-07 21:32:58 +0000 |
---|---|---|
committer | Dave Love <fx@gnu.org> | 2000-10-07 21:32:58 +0000 |
commit | c5c46a261726f71e1d3a78a42fc59322c78ca304 (patch) | |
tree | 5891b591243b88d7aea9a169e0b54e167f58275d /man/emacs-mime.texi | |
parent | b3d38948498db783228d7b55646e399e92c293e5 (diff) | |
download | emacs-c5c46a261726f71e1d3a78a42fc59322c78ca304.tar.gz |
Fix missing @ends.
Diffstat (limited to 'man/emacs-mime.texi')
-rw-r--r-- | man/emacs-mime.texi | 11 |
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. Permission is granted to copy, distribute and/or modify this document under the terms of the GNU Free Documentation License, Version 1.1 or -any later version published by the Free Software Foundation; with the -Invariant Sections being none, with the Front-Cover texts being ``A GNU +any later version published by the Free Software Foundation; with no +Invariant Sections, with the Front-Cover texts being ``A GNU Manual'', and with the Back-Cover Texts as in (a) below. A copy of the license is included in the section entitled ``GNU Free Documentation License'' in the Emacs manual. @@ -245,7 +245,7 @@ Narrow the buffer to the header under point. @item mail-encode-encoded-word-region @findex mail-encode-encoded-word-region Encode the non-ASCII words in the region. For instance, -@samp{Nave} is encoded as @samp{=?iso-8859-1?q?Na=EFve?=}. +@samp{Naïve} is encoded as @samp{=?iso-8859-1?q?Na=EFve?=}. @item mail-encode-encoded-word-buffer @findex mail-encode-encoded-word-buffer @@ -576,10 +576,12 @@ The following functions are defined by the library: @deffn Command quoted-printable-decode-region @var{from} @var{to} &optional @var{coding-system} QP-decode all the encoded text in the region. If @var{coding-system} is non-nil, decode bytes into characters with that coding-system. +@end deffn @defun quoted-printable-decode-string @var{string} &optional @var{coding-system} Return a QP-encoded copy of @var{string}. If @var{coding-system} is non-nil, decode bytes into characters with that coding-system. +@end defun @deffn Command quoted-printable-encode-region @var{from} @var{to} &optional @var{fold} @var{class} QP-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 form expected by @var{skip-chars-forward}. If variable @var{mm-use-ultra-safe-encoding} is defined and non-@code{nil}, fold lines unconditionally and encode lines starting with @samp{From }. +@end deffn @defun quoted-printable-encode-string string Return a QP-encoded copy of @var{string}. - +@end defun @node base64 @section base64 |