summaryrefslogtreecommitdiff
path: root/alpine
diff options
context:
space:
mode:
authorEduardo Chappa <chappa@washington.edu>2020-06-29 12:37:29 -0600
committerEduardo Chappa <chappa@washington.edu>2020-06-29 12:37:29 -0600
commitc6a938d3f92a03764408db0fe3526a781002913e (patch)
tree7053d8fb411dcb5446029077aff114149d20bc27 /alpine
parent4d77713f495bc1e797393cb05e88f17f78ff91d1 (diff)
downloadalpine-c6a938d3f92a03764408db0fe3526a781002913e.tar.xz
* Fixed narrowing a search, using the select command, which was broken while
adding the "R Replace Selectn" command
Diffstat (limited to 'alpine')
-rw-r--r--alpine/mailcmd.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/alpine/mailcmd.c b/alpine/mailcmd.c
index 8c94aa4..afc0a48 100644
--- a/alpine/mailcmd.c
+++ b/alpine/mailcmd.c
@@ -6999,6 +6999,8 @@ aggregate_select(struct pine *state, MSGNO_S *msgmap, int q_line, CmdWhere in_in
case 'n' : /* narrow selection */
narrow++;
+ q = 0;
+ break;
case 'r' : /* replace selection */
p = 1; /* set flag we want to replace */
sel_opts -= 2; /* re-enable first two options */