(mime-decode-parameter-value): Don't use `int-char'.
authorshuhei <shuhei>
Fri, 27 Apr 2001 23:54:18 +0000 (23:54 +0000)
committershuhei <shuhei>
Fri, 27 Apr 2001 23:54:18 +0000 (23:54 +0000)
mime-parse.el

index b2dc3ab..fc58e67 100644 (file)
@@ -97,10 +97,9 @@ be the result."
     (insert text)
     (goto-char (point-min))
     (while (re-search-forward "%[0-9A-Fa-f][0-9A-Fa-f]" nil t)
-      (insert (prog1 (int-char
-                      (string-to-int
-                       (buffer-substring (point)(- (point) 2))
-                       16))
+      (insert (prog1 (string-to-int
+                     (buffer-substring (point)(- (point) 2))
+                     16)
                 (delete-region (point)(- (point) 3)))))
     (setq text (buffer-string))
     (when charset