projects
/
elisp
/
flim.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
4ad7b3f
)
(mime-decode-parameter-value): Don't use `int-char'.
author
shuhei
<shuhei>
Fri, 27 Apr 2001 23:54:18 +0000
(23:54 +0000)
committer
shuhei
<shuhei>
Fri, 27 Apr 2001 23:54:18 +0000
(23:54 +0000)
mime-parse.el
patch
|
blob
|
history
diff --git
a/mime-parse.el
b/mime-parse.el
index
b2dc3ab
..
fc58e67
100644
(file)
--- a/
mime-parse.el
+++ b/
mime-parse.el
@@
-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