summaryrefslogtreecommitdiff
path: root/lisp/gnus/nndoc.el
diff options
context:
space:
mode:
authorKatsumi Yamaoka <yamaoka@jpl.org>2013-10-22 13:55:27 +0000
committerKatsumi Yamaoka <yamaoka@jpl.org>2013-10-22 13:55:27 +0000
commita034ece0661ca20229e69e134a31fd1501b391e9 (patch)
treef5e6bb6aa967cf8ba6d81c34dc29d44bed0b2aa1 /lisp/gnus/nndoc.el
parent84efb042f3afe859e279015a22ce53cbc3aecd7a (diff)
downloademacs-a034ece0661ca20229e69e134a31fd1501b391e9.tar.gz
lisp/gnus/nndoc.el (nndoc-dissect-mime-parts-sub): Fix last change
Diffstat (limited to 'lisp/gnus/nndoc.el')
-rw-r--r--lisp/gnus/nndoc.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/gnus/nndoc.el b/lisp/gnus/nndoc.el
index 00d9f4d4dd0..9c28cb12807 100644
--- a/lisp/gnus/nndoc.el
+++ b/lisp/gnus/nndoc.el
@@ -1011,7 +1011,7 @@ PARENT is the message-ID of the parent summary line, or nil for none."
(when (re-search-forward "^Content-Type:\\([^;]*\\);"
nil t)
(setq len (- (match-end 1) (match-beginning 1)
- (length content-type))
+ (length content-type) 1)
head-end (- head-end len)
body-begin (- body-begin len)
body-end (- body-end len))