+2002-05-10 Yuuichi Teranishi <teranisi@gohome.org>
+
+ * wl-summary.el (wl-summary-jump-to-msg): Fix.
+
2002-05-09 Yuuichi Teranishi <teranisi@gohome.org>
* wl-draft.el (wl-draft-create-contents): Treat 'Body field as draft
(read-from-minibuffer "Jump to Message(No.): ")))))
(setq num (int-to-string num))
(beginning-of-line)
- (if (or (re-search-forward (concat "\r" num) nil t)
- (re-search-backward (concat "\r" num) nil t))
+ (if (or (and (re-search-forward (concat "\r" num "[^0-9]") nil t)
+ (progn (backward-char 1) t))
+ (re-search-backward (concat "\r" num "[^0-9]") nil t))
(progn (beginning-of-line) t)
nil)))