From 37032ee5b067d1b80c3922707c51f64fb0502543 Mon Sep 17 00:00:00 2001
From: rswindell <>
Date: Tue, 7 Aug 2001 17:04:45 +0000
Subject: [PATCH] Replying to a deleted message doesn't re-display message
 (moves to next instead).

---
 src/sbbs3/readmail.cpp | 5 +----
 1 file changed, 1 insertion(+), 4 deletions(-)

diff --git a/src/sbbs3/readmail.cpp b/src/sbbs3/readmail.cpp
index 76d844af8d..c05daf7ca0 100644
--- a/src/sbbs3/readmail.cpp
+++ b/src/sbbs3/readmail.cpp
@@ -392,10 +392,7 @@ void sbbs_t::readmail(uint usernumber, int which)
 						smb_unlockmsghdr(&smb,&msg); }
 				}
 
-				if(msg.hdr.attr&MSG_DELETE)	/* already marked for deletion */
-					break;
-
-				if(!yesno(str2)) {
+				if(msg.hdr.attr&MSG_DELETE || !yesno(str2)) {
 					if(curmsg<msgs-1) curmsg++;
 					else done=1;
 					break;	}
-- 
GitLab