diff options
| author | Dave Love | 2000-10-07 21:32:58 +0000 |
|---|---|---|
| committer | Dave Love | 2000-10-07 21:32:58 +0000 |
| commit | c5c46a261726f71e1d3a78a42fc59322c78ca304 (patch) | |
| tree | 5891b591243b88d7aea9a169e0b54e167f58275d | |
| parent | b3d38948498db783228d7b55646e399e92c293e5 (diff) | |
| download | emacs-c5c46a261726f71e1d3a78a42fc59322c78ca304.tar.gz emacs-c5c46a261726f71e1d3a78a42fc59322c78ca304.zip | |
Fix missing @ends.
| -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. | |||
| 22 | 22 | ||
| 23 | Permission is granted to copy, distribute and/or modify this document | 23 | Permission is granted to copy, distribute and/or modify this document |
| 24 | under the terms of the GNU Free Documentation License, Version 1.1 or | 24 | under the terms of the GNU Free Documentation License, Version 1.1 or |
| 25 | any later version published by the Free Software Foundation; with the | 25 | any later version published by the Free Software Foundation; with no |
| 26 | Invariant Sections being none, with the Front-Cover texts being ``A GNU | 26 | Invariant Sections, with the Front-Cover texts being ``A GNU |
| 27 | Manual'', and with the Back-Cover Texts as in (a) below. A copy of the | 27 | Manual'', and with the Back-Cover Texts as in (a) below. A copy of the |
| 28 | license is included in the section entitled ``GNU Free Documentation | 28 | license is included in the section entitled ``GNU Free Documentation |
| 29 | License'' in the Emacs manual. | 29 | License'' 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 |
| 247 | Encode the non-ASCII words in the region. For instance, | 247 | Encode 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} |
| 577 | QP-decode all the encoded text in the region. If @var{coding-system} is | 577 | QP-decode all the encoded text in the region. If @var{coding-system} is |
| 578 | non-nil, decode bytes into characters with that coding-system. | 578 | non-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} |
| 581 | Return a QP-encoded copy of @var{string}. If @var{coding-system} is | 582 | Return a QP-encoded copy of @var{string}. If @var{coding-system} is |
| 582 | non-nil, decode bytes into characters with that coding-system. | 583 | non-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} |
| 585 | QP-encode all the region. If @var{fold} is non-@var{nil}, fold lines at | 587 | 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 | |||
| 588 | form expected by @var{skip-chars-forward}. If variable | 590 | form 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 |
| 590 | lines unconditionally and encode lines starting with @samp{From }. | 592 | lines 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 |
| 593 | Return a QP-encoded copy of @var{string}. | 596 | Return 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 |