(mailcap-look-at-type-field): Change type and subtype to symbol.
authormorioka <morioka>
Thu, 12 Mar 1998 18:27:27 +0000 (18:27 +0000)
committermorioka <morioka>
Thu, 12 Mar 1998 18:27:27 +0000 (18:27 +0000)
mailcap.el

index 3bc3207..f3b82ce 100644 (file)
@@ -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)))
                        ))))))))