(mailcap-look-at-schar): Protect against unexpected eof. [cf. <tm-ja:5177>]
authoryamaoka <yamaoka>
Mon, 20 Sep 1999 07:08:35 +0000 (07:08 +0000)
committeryamaoka <yamaoka>
Mon, 20 Sep 1999 07:08:35 +0000 (07:08 +0000)
mailcap.el

index eb1c093..25595f0 100644 (file)
@@ -86,7 +86,8 @@
 
 (defsubst mailcap-look-at-schar ()
   (let ((chr (char-after (point))))
-    (if (and (>= chr ? )
+    (if (and chr
+            (>= chr ? )
             (/= chr ?\;)
             (/= chr ?\\)
             )