lisp/gnus/nndoc.el (nndoc-dissect-mime-parts-sub): Fix last change

This commit is contained in:
Katsumi Yamaoka 2013-10-22 13:55:27 +00:00
parent 84efb042f3
commit a034ece066

View file

@ -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))