projects
/
elisp
/
semi.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
449d318
)
(mailcap-look-at-type-field): Change type and subtype to symbol.
author
morioka
<morioka>
Thu, 12 Mar 1998 18:27:27 +0000
(18:27 +0000)
committer
morioka
<morioka>
Thu, 12 Mar 1998 18:27:27 +0000
(18:27 +0000)
mailcap.el
patch
|
blob
|
history
diff --git
a/mailcap.el
b/mailcap.el
index
3bc3207
..
f3b82ce
100644
(file)
--- a/
mailcap.el
+++ b/
mailcap.el
@@
-61,9
+61,9
@@
(forward-char)
(let ((subtype (mailcap-look-at-token)))
(if subtype
- (cons (cons 'type type)
+ (cons (cons 'type (intern type))
(unless (string= subtype "*")
- (list (cons 'subtype subtype))
+ (list (cons 'subtype (intern subtype)))
))))))))