* mime-view.el: (mime-display-text/x-vcard): Fix multibyteness semi-vcard semi-vcard-199811302358 semi-vcard-last-snapshot-
authorakr <akr>
Thu, 12 Nov 1998 13:26:31 +0000 (13:26 +0000)
committerakr <akr>
Thu, 12 Nov 1998 13:26:31 +0000 (13:26 +0000)
problem.

ChangeLog
mime-view.el

index fcb22b7..0a95f48 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+1998-11-12  Tanaka Akira  <akr@jaist.ac.jp>
+
+        * mime-view.el: (mime-display-text/x-vcard): Fix multibyteness
+       problem.
+
 1998-11-07  Tanaka Akira  <akr@jaist.ac.jp>
 
         * mime-view.el: (mime-display-text/x-vcard): Preserve encoding.
index dd8f6de..0946bd6 100644 (file)
@@ -463,7 +463,7 @@ Each elements are regexp of field-name.")
 (defun mime-display-text/x-vcard (entity situation)
   (save-restriction
     (narrow-to-region (point-max)(point-max))
-    (insert (mime-entity-content entity))
+    (insert (string-as-multibyte (mime-entity-content entity)))
     (goto-char (point-min))
     (while (re-search-forward
             "\\(;\\(encoding=\\)?quoted-printable:\\)\\(\\(=[0-9A-F][0-9A-F]\\|=\r\n\\|[^\r\n]\\)*\\)"