まちBBS でレスが取得できないことがあるんで調べてました。
navi2ch-net-get-chunk() を実行したときにすでに PROC が閉じられていると
一度も looking-at() を実行しないまま処理が進んでしまいます。
以下の修正で良いでしょうか?

--- navi2ch-net.el 16 Jul 2003 12:30:48 -0000 1.78
+++ navi2ch-net.el 2 Aug 2003 18:35:52 -0000
@@ -293,8 +293,8 @@
(catch 'ret
(let ((p (point))
size end)
- (while (and (eq (process-status proc) 'open)
- (not (looking-at "\\([0-9a-fA-F]+\\)[^\r\n]*\r\n")))
+ (while (and (not (looking-at "\\([0-9a-fA-F]+\\)[^\r\n]*\r\n"))
+ (eq (process-status proc) 'open))
(accept-process-output proc)
(goto-char p))
(when (not (match-string 1))