emacs-mime.texi (Interface Functions): Use 'ï' rather than '@"{@dotless{i}}'
authorPaul Eggert <eggert@cs.ucla.edu>
Mon, 18 Mar 2013 07:54:26 +0000 (07:54 +0000)
committerKatsumi Yamaoka <yamaoka@jpl.org>
Mon, 18 Mar 2013 07:54:26 +0000 (07:54 +0000)
texi/ChangeLog
texi/emacs-mime.texi

index 88da371..443cb5b 100644 (file)
@@ -1,3 +1,9 @@
+2013-03-17  Paul Eggert  <eggert@cs.ucla.edu>
+
+       doc: convert some TeX accents to UTF-8
+       * emacs-mime.texi (Interface Functions): Use 'ï' rather than
+       '@"{@dotless{i}}'.
+
 2013-03-07  Katsumi Yamaoka  <yamaoka@jpl.org>
 
        * gnus-faq.texi (FAQ 3-11): Now Gnus supports POP3 UIDL.
index 3f24ed7..e68137b 100644 (file)
@@ -1221,7 +1221,7 @@ Return the value of the field under point.
 @item mail-encode-encoded-word-region
 @findex mail-encode-encoded-word-region
 Encode the non-@acronym{ASCII} words in the region.  For instance,
-@samp{Na@"{@dotless{i}}ve} 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
@@ -1234,7 +1234,7 @@ Encode the words that need encoding in a string, and return the result.
 
 @example
 (mail-encode-encoded-word-string
- "This is na@"{@dotless{i}}ve, baby")
+ "This is naïve, baby")
 @result{} "This is =?iso-8859-1?q?na=EFve,?= baby"
 @end example
 
@@ -1249,7 +1249,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@"{@dotless{i}}ve, baby"
+@result{} "This is naïve, baby"
 @end example
 
 @end table