From: yamaoka Date: Fri, 12 Feb 1999 02:25:09 +0000 (+0000) Subject: * Fix latin chars. X-Git-Tag: t-gnus-6_10_058-02~2 X-Git-Url: http://git.chise.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=bfabb8c4d7752929d50386f84d264034b1e0b725;p=elisp%2Fgnus.git- * Fix latin chars. --- diff --git a/texi/emacs-mime.texi b/texi/emacs-mime.texi index e681b75..e40194a 100644 --- a/texi/emacs-mime.texi +++ b/texi/emacs-mime.texi @@ -242,7 +242,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{Na$B}W(Be} 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 @@ -255,7 +255,7 @@ Encode the words that need encoding in a string, and return the result. @example (mail-encode-encoded-word-string - "This is na$B}W(Be, baby") + "This is naïve, baby") @result{} "This is =?iso-8859-1?q?na=EFve,?= baby" @end example @@ -270,7 +270,7 @@ Decode the encoded words in the string and return the result. @example (mail-decode-encoded-word-string "This is =?iso-8859-1?q?na=EFve,?= baby") -@result{} "This is na$B}W(Be, baby" +@result{} "This is naïve, baby" @end example @end table