From a4ae56819095d4ee76e04581411780f412fa9e0e Mon Sep 17 00:00:00 2001 From: yamaoka Date: Mon, 16 Nov 1998 00:11:58 +0000 Subject: [PATCH] Fix iso-8859-1 chars. --- texi/emacs-mime.texi | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/texi/emacs-mime.texi b/texi/emacs-mime.texi index 8585bbc..122f513 100644 --- a/texi/emacs-mime.texi +++ b/texi/emacs-mime.texi @@ -235,7 +235,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 @@ -248,7 +248,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 @@ -263,7 +263,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 -- 1.7.10.4