summaryrefslogtreecommitdiffstats
path: root/pattern.c
diff options
context:
space:
mode:
authorThomas Roessler <roessler@does-not-exist.org>1998-06-19 12:52:04 +0000
committerThomas Roessler <roessler@does-not-exist.org>1998-06-19 12:52:04 +0000
commit9044dd4d58af4b4d64a6e68b7b76c42d317e7ce5 (patch)
tree6c7294a93c4adf68fa7544b13beb6f24a54923a2 /pattern.c
parent705380445111ecdb41fa537b6b50625e84714429 (diff)
Removing the Attach-Menu feature for the next release
version.
Diffstat (limited to 'pattern.c')
-rw-r--r--pattern.c16
1 files changed, 8 insertions, 8 deletions
diff --git a/pattern.c b/pattern.c
index a720c8aa..0435ac76 100644
--- a/pattern.c
+++ b/pattern.c
@@ -960,7 +960,7 @@ int mutt_pattern_func (int op, char *prompt, HEADER *hdr)
return 0;
}
-int mutt_search_command (CONTEXT *ctx, int cur, int op)
+int mutt_search_command (int cur, int op)
{
int i, j;
char buf[STRING];
@@ -1011,8 +1011,8 @@ int mutt_search_command (CONTEXT *ctx, int cur, int op)
if (option (OPTSEARCHINVALID))
{
- for (i = 0; i < ctx->msgcount; i++)
- ctx->hdrs[i]->searched = 0;
+ for (i = 0; i < Context->msgcount; i++)
+ Context->hdrs[i]->searched = 0;
unset_option (OPTSEARCHINVALID);
}
@@ -1020,9 +1020,9 @@ int mutt_search_command (CONTEXT *ctx, int cur, int op)
if (op == OP_SEARCH_OPPOSITE)
incr = -incr;
- for (i = cur + incr, j = 0 ; j != ctx->vcount; j++)
+ for (i = cur + incr, j = 0 ; j != Context->vcount; j++)
{
- if (i > ctx->vcount - 1)
+ if (i > Context->vcount - 1)
{
i = 0;
if (option (OPTWRAPSEARCH))
@@ -1035,7 +1035,7 @@ int mutt_search_command (CONTEXT *ctx, int cur, int op)
}
else if (i < 0)
{
- i = ctx->vcount - 1;
+ i = Context->vcount - 1;
if (option (OPTWRAPSEARCH))
mutt_message ("Search wrapped to bottom.");
else
@@ -1045,7 +1045,7 @@ int mutt_search_command (CONTEXT *ctx, int cur, int op)
}
}
- h = ctx->hdrs[ctx->v2r[i]];
+ h = Context->hdrs[Context->v2r[i]];
if (h->searched)
{
/* if we've already evaulated this message, use the cached value */
@@ -1056,7 +1056,7 @@ int mutt_search_command (CONTEXT *ctx, int cur, int op)
{
/* remember that we've already searched this message */
h->searched = 1;
- if ((h->matched = (mutt_pattern_exec (SearchPattern, M_MATCH_FULL_ADDRESS, ctx, h) > 0)))
+ if ((h->matched = (mutt_pattern_exec (SearchPattern, M_MATCH_FULL_ADDRESS, Context, h) > 0)))
return i;
}