(mailcap-look-at-mtext): Don't strip quoted character again.
authormorioka <morioka>
Wed, 6 May 1998 01:50:35 +0000 (01:50 +0000)
committermorioka <morioka>
Wed, 6 May 1998 01:50:35 +0000 (01:50 +0000)
mailcap.el

index a27be3e..416b977 100644 (file)
       )))
 
 (defsubst mailcap-look-at-mtext ()
-  (let ((p0 (point))
-       dest)
-    (while (cond ((mailcap-look-at-qchar)
-                 (setq dest
-                       (concat dest
-                               (buffer-substring p0 (- (point) 2))
-                               (char-to-string (char-before (point)))
-                               )
-                       p0 (point))
-                 )
-                ((mailcap-look-at-schar)
-                 t)))
-    (concat dest (buffer-substring p0 (point)))
+  (let ((beg (point)))
+    (while (or (mailcap-look-at-qchar)
+              (mailcap-look-at-schar)))
+    (buffer-substring beg (point))
     ))