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:
938e6a3
)
(mime-preview-text/html): Guard from error of `w3-region'.
author
morioka
<morioka>
Mon, 25 Jan 1999 18:10:18 +0000
(18:10 +0000)
committer
morioka
<morioka>
Mon, 25 Jan 1999 18:10:18 +0000
(18:10 +0000)
mime-w3.el
patch
|
blob
|
history
diff --git
a/mime-w3.el
b/mime-w3.el
index
be90783
..
97ce765
100644
(file)
--- a/
mime-w3.el
+++ b/
mime-w3.el
@@
-58,7
+58,9
@@
(narrow-to-region p p)
(mime-insert-text-content entity)
(run-hooks 'mime-text-decode-hook)
- (w3-region p (point-max))
+ (condition-case nil
+ (w3-region p (point-max))
+ (error nil))
(mime-put-keymap-region p (point-max) w3-mode-map)
))))