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:
47d22bb
)
(mailcap-look-at-schar): Protect against unexpected eof. [cf. <tm-ja:5177>]
author
yamaoka
<yamaoka>
Mon, 20 Sep 1999 07:08:23 +0000
(07:08 +0000)
committer
yamaoka
<yamaoka>
Mon, 20 Sep 1999 07:08:23 +0000
(07:08 +0000)
mailcap.el
patch
|
blob
|
history
diff --git
a/mailcap.el
b/mailcap.el
index
eb1c093
..
25595f0
100644
(file)
--- a/
mailcap.el
+++ b/
mailcap.el
@@
-86,7
+86,8
@@
(defsubst mailcap-look-at-schar ()
(let ((chr (char-after (point))))
- (if (and (>= chr ? )
+ (if (and chr
+ (>= chr ? )
(/= chr ?\;)
(/= chr ?\\)
)