]> git.llucax.com Git - software/mutt-debian.git/blob - pager.c
removing an article form the Description of mutt-patched to make lintian happy
[software/mutt-debian.git] / pager.c
1 /*
2  * Copyright (C) 1996-2002,2007 Michael R. Elkins <me@mutt.org>
3  * 
4  *     This program is free software; you can redistribute it and/or modify
5  *     it under the terms of the GNU General Public License as published by
6  *     the Free Software Foundation; either version 2 of the License, or
7  *     (at your option) any later version.
8  * 
9  *     This program is distributed in the hope that it will be useful,
10  *     but WITHOUT ANY WARRANTY; without even the implied warranty of
11  *     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12  *     GNU General Public License for more details.
13  * 
14  *     You should have received a copy of the GNU General Public License
15  *     along with this program; if not, write to the Free Software
16  *     Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
17  */ 
18
19 #if HAVE_CONFIG_H
20 # include "config.h"
21 #endif
22
23 #include "mutt.h"
24 #include "mutt_curses.h"
25 #include "mutt_regex.h"
26 #include "keymap.h"
27 #include "mutt_menu.h"
28 #include "mapping.h"
29 #include "pager.h"
30 #include "attach.h"
31 #include "mbyte.h"
32
33 #include "mutt_crypt.h"
34
35 #include <sys/stat.h>
36 #include <ctype.h>
37 #include <unistd.h>
38 #include <stdlib.h>
39 #include <string.h>
40 #include <errno.h>
41
42 #define ISHEADER(x) ((x) == MT_COLOR_HEADER || (x) == MT_COLOR_HDEFAULT)
43
44 #define IsAttach(x) (x && (x)->bdy)
45 #define IsRecvAttach(x) (x && (x)->bdy && (x)->fp)
46 #define IsSendAttach(x) (x && (x)->bdy && !(x)->fp)
47 #define IsMsgAttach(x) (x && (x)->fp && (x)->bdy && (x)->bdy->hdr)
48 #define IsHeader(x) (x && (x)->hdr && !(x)->bdy)
49
50 static const char *Not_available_in_this_menu = N_("Not available in this menu.");
51 static const char *Mailbox_is_read_only = N_("Mailbox is read-only.");
52 static const char *Function_not_permitted_in_attach_message_mode = N_("Function not permitted in attach-message mode.");
53
54 /* hack to return to position when returning from index to same message */
55 static int TopLine = 0;
56 static HEADER *OldHdr = NULL;
57
58 #define CHECK_MODE(x)   if (!(x)) \
59                         { \
60                                 mutt_flushinp (); \
61                                 mutt_error _(Not_available_in_this_menu); \
62                                 break; \
63                         }
64
65 #define CHECK_READONLY  if (Context->readonly) \
66                         { \
67                                 mutt_flushinp (); \
68                                 mutt_error _(Mailbox_is_read_only);     \
69                                 break; \
70                         }
71
72 #define CHECK_ATTACH if(option(OPTATTACHMSG)) \
73                      {\
74                         mutt_flushinp (); \
75                         mutt_error _(Function_not_permitted_in_attach_message_mode); \
76                         break; \
77                      }
78
79 #define CHECK_ACL(aclbit,action) \
80                 if (!mutt_bit_isset(Context->rights,aclbit)) { \
81                         mutt_flushinp(); \
82                         mutt_error (_("Cannot %s: Operation not permitted by ACL"), action); \
83                         break; \
84                 }
85
86 struct q_class_t
87 {
88   int length;
89   int index;
90   int color;
91   char *prefix;
92   struct q_class_t *next, *prev;
93   struct q_class_t *down, *up;
94 };
95
96 struct syntax_t
97 {
98   int color;
99   int first;
100   int last;
101 };
102
103 struct line_t
104 {
105   LOFF_T offset;
106   short type;
107   short continuation;
108   short chunks;
109   short search_cnt;
110   struct syntax_t *syntax;
111   struct syntax_t *search;
112   struct q_class_t *quote;
113   unsigned int is_cont_hdr; /* this line is a continuation of the previous header line */
114 };
115
116 #define ANSI_OFF       (1<<0)
117 #define ANSI_BLINK     (1<<1)
118 #define ANSI_BOLD      (1<<2)
119 #define ANSI_UNDERLINE (1<<3)
120 #define ANSI_REVERSE   (1<<4)
121 #define ANSI_COLOR     (1<<5)
122
123 typedef struct _ansi_attr {
124   int attr;
125   int fg;
126   int bg;
127   int pair;
128 } ansi_attr;
129
130 static short InHelp = 0;
131
132 #if defined (USE_SLANG_CURSES) || defined (HAVE_RESIZETERM)
133 static struct resize {
134   int line;
135   int SearchCompiled;
136   int SearchBack;
137 } *Resize = NULL;
138 #endif
139
140 #define NumSigLines 4
141
142 static int check_sig (const char *s, struct line_t *info, int n)
143 {
144   int count = 0;
145
146   while (n > 0 && count <= NumSigLines)
147   {
148     if (info[n].type != MT_COLOR_SIGNATURE)
149       break;
150     count++;
151     n--;
152   }
153
154   if (count == 0)
155     return (-1);
156
157   if (count > NumSigLines)
158   {
159     /* check for a blank line */
160     while (*s)
161     {
162       if (!ISSPACE (*s))
163         return 0;
164       s++;
165     }
166
167     return (-1);
168   }
169
170   return (0);
171 }
172
173 static void
174 resolve_color (struct line_t *lineInfo, int n, int cnt, int flags, int special,
175     ansi_attr *a)
176 {
177   int def_color;                /* color without syntax hilight */
178   int color;                    /* final color */
179   static int last_color;        /* last color set */
180   int search = 0, i, m;
181
182   if (!cnt)
183     last_color = -1;            /* force attrset() */
184
185   if (lineInfo[n].continuation)
186   {
187     if (!cnt && option (OPTMARKERS))
188     {
189       SETCOLOR (MT_COLOR_MARKERS);
190       addch ('+');
191       last_color = ColorDefs[MT_COLOR_MARKERS];
192     }
193     m = (lineInfo[n].syntax)[0].first;
194     cnt += (lineInfo[n].syntax)[0].last;
195   }
196   else
197     m = n;
198   if (!(flags & M_SHOWCOLOR))
199     def_color = ColorDefs[MT_COLOR_NORMAL];
200   else if (lineInfo[m].type == MT_COLOR_HEADER)
201     def_color = (lineInfo[m].syntax)[0].color;
202   else
203     def_color = ColorDefs[lineInfo[m].type];
204
205   if ((flags & M_SHOWCOLOR) && lineInfo[m].type == MT_COLOR_QUOTED)
206   {
207     struct q_class_t *class = lineInfo[m].quote;
208
209     if (class)
210     {
211       def_color = class->color;
212
213       while (class && class->length > cnt)
214       {
215         def_color = class->color;
216         class = class->up;
217       }
218     }
219   }
220
221   color = def_color;
222   if (flags & M_SHOWCOLOR)
223   {
224     for (i = 0; i < lineInfo[m].chunks; i++)
225     {
226       /* we assume the chunks are sorted */
227       if (cnt > (lineInfo[m].syntax)[i].last)
228         continue;
229       if (cnt < (lineInfo[m].syntax)[i].first)
230         break;
231       if (cnt != (lineInfo[m].syntax)[i].last)
232       {
233         color = (lineInfo[m].syntax)[i].color;
234         break;
235       }
236       /* don't break here, as cnt might be 
237        * in the next chunk as well */
238     }
239   }
240
241   if (flags & M_SEARCH)
242   {
243     for (i = 0; i < lineInfo[m].search_cnt; i++)
244     {
245       if (cnt > (lineInfo[m].search)[i].last)
246         continue;
247       if (cnt < (lineInfo[m].search)[i].first)
248         break;
249       if (cnt != (lineInfo[m].search)[i].last)
250       {
251         color = ColorDefs[MT_COLOR_SEARCH];
252         search = 1;
253         break;
254       }
255     }
256   }
257
258   /* handle "special" bold & underlined characters */
259   if (special || a->attr)
260   {
261 #ifdef HAVE_COLOR
262     if ((a->attr & ANSI_COLOR))
263     {
264       if (a->pair == -1)
265         a->pair = mutt_alloc_color (a->fg, a->bg);
266       color = a->pair;
267       if (a->attr & ANSI_BOLD)
268           color |= A_BOLD;
269     }
270     else
271 #endif
272       if ((special & A_BOLD) || (a->attr & ANSI_BOLD))
273     {
274       if (ColorDefs[MT_COLOR_BOLD] && !search)
275         color = ColorDefs[MT_COLOR_BOLD];
276       else
277         color ^= A_BOLD;
278     }
279     if ((special & A_UNDERLINE) || (a->attr & ANSI_UNDERLINE))
280     {
281       if (ColorDefs[MT_COLOR_UNDERLINE] && !search)
282         color = ColorDefs[MT_COLOR_UNDERLINE];
283       else
284         color ^= A_UNDERLINE;
285     }
286     else if (a->attr & ANSI_REVERSE) 
287     {
288       color ^= A_REVERSE;
289     }
290     else if (a->attr & ANSI_BLINK) 
291     {
292       color ^= A_BLINK;
293     }
294     else if (a->attr & ANSI_OFF)
295     {
296       a->attr = 0;
297     }
298   }
299
300   if (color != last_color)
301   {
302     attrset (color);
303     last_color = color;
304   }
305 }
306
307 static void
308 append_line (struct line_t *lineInfo, int n, int cnt)
309 {
310   int m;
311
312   lineInfo[n+1].type = lineInfo[n].type;
313   (lineInfo[n+1].syntax)[0].color = (lineInfo[n].syntax)[0].color;
314   lineInfo[n+1].continuation = 1;
315
316   /* find the real start of the line */
317   for (m = n; m >= 0; m--)
318     if (lineInfo[m].continuation == 0) break;
319
320   (lineInfo[n+1].syntax)[0].first = m;
321   (lineInfo[n+1].syntax)[0].last = (lineInfo[n].continuation) ? 
322     cnt + (lineInfo[n].syntax)[0].last : cnt;
323 }
324
325 static void
326 new_class_color (struct q_class_t *class, int *q_level)
327 {
328   class->index = (*q_level)++;
329   class->color = ColorQuote[class->index % ColorQuoteUsed];
330 }
331
332 static void
333 shift_class_colors (struct q_class_t *QuoteList, struct q_class_t *new_class,
334                       int index, int *q_level)
335 {
336   struct q_class_t * q_list;
337
338   q_list = QuoteList;
339   new_class->index = -1;
340
341   while (q_list)
342   {
343     if (q_list->index >= index)
344     {
345       q_list->index++;
346       q_list->color = ColorQuote[q_list->index % ColorQuoteUsed];
347     }
348     if (q_list->down)
349       q_list = q_list->down;
350     else if (q_list->next)
351       q_list = q_list->next;
352     else
353     {
354       while (!q_list->next)
355       {
356         q_list = q_list->up;
357         if (q_list == NULL)
358           break;
359       }
360       if (q_list)
361         q_list = q_list->next;
362     }
363   }
364
365   new_class->index = index;
366   new_class->color = ColorQuote[index % ColorQuoteUsed];
367   (*q_level)++;
368 }
369
370 static void
371 cleanup_quote (struct q_class_t **QuoteList)
372 {
373   struct q_class_t *ptr;
374
375   while (*QuoteList)
376   {
377     if ((*QuoteList)->down)
378       cleanup_quote (&((*QuoteList)->down));
379     ptr = (*QuoteList)->next;
380     if ((*QuoteList)->prefix)
381       FREE (&(*QuoteList)->prefix);
382     FREE (QuoteList);           /* __FREE_CHECKED__ */
383     *QuoteList = ptr;
384   }
385
386   return;
387 }
388
389 static struct q_class_t *
390 classify_quote (struct q_class_t **QuoteList, const char *qptr,
391                 int length, int *force_redraw, int *q_level)
392 {
393   struct q_class_t *q_list = *QuoteList;
394   struct q_class_t *class = NULL, *tmp = NULL, *ptr, *save;
395   char *tail_qptr;
396   int offset, tail_lng;
397   int index = -1;
398
399   if (ColorQuoteUsed <= 1)
400   {
401     /* not much point in classifying quotes... */
402
403     if (*QuoteList == NULL)
404     {
405       class = (struct q_class_t *) safe_calloc (1, sizeof (struct q_class_t));
406       class->color = ColorQuote[0];
407       *QuoteList = class;
408     }
409     return (*QuoteList);
410   }
411
412   /* Did I mention how much I like emulating Lisp in C? */
413
414   /* classify quoting prefix */
415   while (q_list)
416   {
417     if (length <= q_list->length)
418     {
419       /* case 1: check the top level nodes */
420
421       if (mutt_strncmp (qptr, q_list->prefix, length) == 0)
422       {
423         if (length == q_list->length)
424           return q_list;        /* same prefix: return the current class */
425
426         /* found shorter prefix */
427         if (tmp == NULL)
428         {
429           /* add a node above q_list */
430           tmp = (struct q_class_t *) safe_calloc (1, sizeof (struct q_class_t));
431           tmp->prefix = (char *) safe_calloc (1, length + 1);
432           strncpy (tmp->prefix, qptr, length);
433           tmp->length = length;
434
435           /* replace q_list by tmp in the top level list */
436           if (q_list->next)
437           {
438             tmp->next = q_list->next;
439             q_list->next->prev = tmp;
440           }
441           if (q_list->prev)
442           {
443             tmp->prev = q_list->prev;
444             q_list->prev->next = tmp;
445           }
446
447           /* make q_list a child of tmp */
448           tmp->down = q_list;
449           q_list->up = tmp;
450
451           /* q_list has no siblings for now */
452           q_list->next = NULL;
453           q_list->prev = NULL;
454
455           /* update the root if necessary */
456           if (q_list == *QuoteList)
457             *QuoteList = tmp;
458
459           index = q_list->index;
460
461           /* tmp should be the return class too */
462           class = tmp;
463
464           /* next class to test; if tmp is a shorter prefix for another
465            * node, that node can only be in the top level list, so don't
466            * go down after this point
467            */
468           q_list = tmp->next;
469         }
470         else
471         {
472           /* found another branch for which tmp is a shorter prefix */
473
474           /* save the next sibling for later */
475           save = q_list->next;
476
477           /* unlink q_list from the top level list */
478           if (q_list->next)
479             q_list->next->prev = q_list->prev;
480           if (q_list->prev)
481             q_list->prev->next = q_list->next;
482
483           /* at this point, we have a tmp->down; link q_list to it */
484           ptr = tmp->down;
485           /* sibling order is important here, q_list should be linked last */
486           while (ptr->next)
487             ptr = ptr->next;
488           ptr->next = q_list;
489           q_list->next = NULL;
490           q_list->prev = ptr;
491           q_list->up = tmp;
492
493           index = q_list->index;
494
495           /* next class to test; as above, we shouldn't go down */
496           q_list = save;
497         }
498
499         /* we found a shorter prefix, so certain quotes have changed classes */
500         *force_redraw = 1;
501         continue;
502       }
503       else
504       {
505         /* shorter, but not a substring of the current class: try next */
506         q_list = q_list->next;
507         continue;
508       }
509     }
510     else
511     {
512       /* case 2: try subclassing the current top level node */
513       
514       /* tmp != NULL means we already found a shorter prefix at case 1 */
515       if (tmp == NULL && mutt_strncmp (qptr, q_list->prefix, q_list->length) == 0)
516       {
517         /* ok, it's a subclass somewhere on this branch */
518
519         ptr = q_list;
520         offset = q_list->length;
521
522         q_list = q_list->down;
523         tail_lng = length - offset;
524         tail_qptr = (char *) qptr + offset;
525
526         while (q_list)
527         {
528           if (length <= q_list->length)
529           {
530             if (mutt_strncmp (tail_qptr, (q_list->prefix) + offset, tail_lng) == 0)
531             {
532               /* same prefix: return the current class */
533               if (length == q_list->length)
534                 return q_list;
535
536               /* found shorter common prefix */
537               if (tmp == NULL)
538               {
539                 /* add a node above q_list */
540                 tmp = (struct q_class_t *) safe_calloc (1, 
541                                             sizeof (struct q_class_t));
542                 tmp->prefix = (char *) safe_calloc (1, length + 1);
543                 strncpy (tmp->prefix, qptr, length);
544                 tmp->length = length;
545                         
546                 /* replace q_list by tmp */
547                 if (q_list->next)
548                 {
549                   tmp->next = q_list->next;
550                   q_list->next->prev = tmp;
551                 }
552                 if (q_list->prev)
553                 {
554                   tmp->prev = q_list->prev;
555                   q_list->prev->next = tmp;
556                 }
557
558                 /* make q_list a child of tmp */
559                 tmp->down = q_list;
560                 tmp->up = q_list->up;
561                 q_list->up = tmp;
562                 if (tmp->up->down == q_list)
563                   tmp->up->down = tmp;
564
565                 /* q_list has no siblings */
566                 q_list->next = NULL;
567                 q_list->prev = NULL;
568                               
569                 index = q_list->index;
570
571                 /* tmp should be the return class too */
572                 class = tmp;
573
574                 /* next class to test */
575                 q_list = tmp->next;
576               }
577               else
578               {
579                 /* found another branch for which tmp is a shorter prefix */
580
581                 /* save the next sibling for later */
582                 save = q_list->next;
583
584                 /* unlink q_list from the top level list */
585                 if (q_list->next)
586                   q_list->next->prev = q_list->prev;
587                 if (q_list->prev)
588                   q_list->prev->next = q_list->next;
589
590                 /* at this point, we have a tmp->down; link q_list to it */
591                 ptr = tmp->down;
592                 while (ptr->next)
593                   ptr = ptr->next;
594                 ptr->next = q_list;
595                 q_list->next = NULL;
596                 q_list->prev = ptr;
597                 q_list->up = tmp;
598
599                 index = q_list->index;
600
601                 /* next class to test */
602                 q_list = save;
603               }
604
605               /* we found a shorter prefix, so we need a redraw */
606               *force_redraw = 1;
607               continue;
608             }
609             else
610             {
611               q_list = q_list->next;
612               continue;
613             }
614           }
615           else
616           {
617             /* longer than the current prefix: try subclassing it */
618             if (tmp == NULL && mutt_strncmp (tail_qptr, (q_list->prefix) + offset,
619                           q_list->length - offset) == 0)
620             {
621               /* still a subclass: go down one level */
622               ptr = q_list;
623               offset = q_list->length;
624
625               q_list = q_list->down;
626               tail_lng = length - offset;
627               tail_qptr = (char *) qptr + offset;
628
629               continue;
630             }
631             else
632             {
633               /* nope, try the next prefix */
634               q_list = q_list->next;
635               continue;
636             }
637           }
638         }
639
640         /* still not found so far: add it as a sibling to the current node */
641         if (class == NULL)
642         {
643           tmp = (struct q_class_t *) safe_calloc (1, sizeof (struct q_class_t));
644           tmp->prefix = (char *) safe_calloc (1, length + 1);
645           strncpy (tmp->prefix, qptr, length);
646           tmp->length = length;
647
648           if (ptr->down)
649           {
650             tmp->next = ptr->down;
651             ptr->down->prev = tmp;
652           }
653           ptr->down = tmp;
654           tmp->up = ptr;
655
656           new_class_color (tmp, q_level);
657
658           return tmp;
659         }
660         else
661         {
662           if (index != -1)
663             shift_class_colors (*QuoteList, tmp, index, q_level);
664
665           return class;
666         }
667       }
668       else
669       {
670         /* nope, try the next prefix */
671         q_list = q_list->next;
672         continue;
673       }
674     }
675   }
676
677   if (class == NULL)
678   {
679     /* not found so far: add it as a top level class */
680     class = (struct q_class_t *) safe_calloc (1, sizeof (struct q_class_t));
681     class->prefix = (char *) safe_calloc (1, length + 1);
682     strncpy (class->prefix, qptr, length);
683     class->length = length;
684     new_class_color (class, q_level);
685
686     if (*QuoteList)
687     {
688       class->next = *QuoteList;
689       (*QuoteList)->prev = class;
690     }
691     *QuoteList = class;
692   }
693
694   if (index != -1)
695     shift_class_colors (*QuoteList, tmp, index, q_level);
696
697   return class;
698 }
699
700 static int brailleLine = -1;
701 static int brailleCol = -1;
702
703 static int check_attachment_marker (char *);
704
705 static void
706 resolve_types (char *buf, char *raw, struct line_t *lineInfo, int n, int last,
707                 struct q_class_t **QuoteList, int *q_level, int *force_redraw,
708                 int q_classify)
709 {
710   COLOR_LINE *color_line;
711   regmatch_t pmatch[1], smatch[1];
712   int found, offset, null_rx, i;
713
714   if (n == 0 || ISHEADER (lineInfo[n-1].type))
715   {
716     if (buf[0] == '\n') /* end of header */
717     {
718       lineInfo[n].type = MT_COLOR_NORMAL;
719       getyx(stdscr, brailleLine, brailleCol);
720     }
721     else
722     {
723       /* if this is a continuation of the previous line, use the previous
724        * line's color as default. */
725       if (n > 0 && (buf[0] == ' ' || buf[0] == '\t'))
726       {
727         lineInfo[n].type = lineInfo[n-1].type; /* wrapped line */
728         (lineInfo[n].syntax)[0].color = (lineInfo[n-1].syntax)[0].color;
729         lineInfo[n].is_cont_hdr = 1;
730       }
731       else
732       {
733         lineInfo[n].type = MT_COLOR_HDEFAULT;
734       }
735
736       for (color_line = ColorHdrList; color_line; color_line = color_line->next)
737       {
738         if (REGEXEC (color_line->rx, buf) == 0)
739         {
740           lineInfo[n].type = MT_COLOR_HEADER;
741           lineInfo[n].syntax[0].color = color_line->pair;
742           if (lineInfo[n].is_cont_hdr)
743           {
744             /* adjust the previous continuation lines to reflect the color of this continuation line */
745             int j;
746             for (j = n - 1; j >= 0 && lineInfo[j].is_cont_hdr; --j)
747             {
748               lineInfo[j].type = lineInfo[n].type;
749               lineInfo[j].syntax[0].color = lineInfo[n].syntax[0].color;
750             }
751             /* now adjust the first line of this header field */
752             if (j >= 0)
753             {
754               lineInfo[j].type = lineInfo[n].type;
755               lineInfo[j].syntax[0].color = lineInfo[n].syntax[0].color;
756             }
757             *force_redraw = 1; /* the previous lines have already been drawn on the screen */
758           }
759           break;
760         }
761       }
762     }
763   }
764   else if (mutt_strncmp ("\033[0m", raw, 4) == 0)       /* a little hack... */
765     lineInfo[n].type = MT_COLOR_NORMAL;
766 #if 0
767   else if (mutt_strncmp ("[-- ", buf, 4) == 0)
768     lineInfo[n].type = MT_COLOR_ATTACHMENT;
769 #else
770   else if (check_attachment_marker ((char *) raw) == 0)
771     lineInfo[n].type = MT_COLOR_ATTACHMENT;
772 #endif
773   else if (mutt_strcmp ("-- \n", buf) == 0 || mutt_strcmp ("-- \r\n", buf) == 0)
774   {
775     i = n + 1;
776
777     lineInfo[n].type = MT_COLOR_SIGNATURE;
778     while (i < last && check_sig (buf, lineInfo, i - 1) == 0 &&
779            (lineInfo[i].type == MT_COLOR_NORMAL ||
780             lineInfo[i].type == MT_COLOR_QUOTED ||
781             lineInfo[i].type == MT_COLOR_HEADER))
782       {
783         /* oops... */
784         if (lineInfo[i].chunks)
785         {
786           lineInfo[i].chunks = 0;
787           safe_realloc (&(lineInfo[n].syntax), 
788                         sizeof (struct syntax_t));
789         }
790         lineInfo[i++].type = MT_COLOR_SIGNATURE;
791       }
792   }
793   else if (check_sig (buf, lineInfo, n - 1) == 0)
794     lineInfo[n].type = MT_COLOR_SIGNATURE;
795   else if (regexec ((regex_t *) QuoteRegexp.rx, buf, 1, pmatch, 0) == 0)
796   {
797     if (regexec ((regex_t *) Smileys.rx, buf, 1, smatch, 0) == 0)
798     {
799       if (smatch[0].rm_so > 0)
800       {
801         char c;
802
803         /* hack to avoid making an extra copy of buf */
804         c = buf[smatch[0].rm_so];
805         buf[smatch[0].rm_so] = 0;
806
807         if (regexec ((regex_t *) QuoteRegexp.rx, buf, 1, pmatch, 0) == 0)
808         {
809           if (q_classify && lineInfo[n].quote == NULL)
810             lineInfo[n].quote = classify_quote (QuoteList,
811                                   buf + pmatch[0].rm_so,
812                                   pmatch[0].rm_eo - pmatch[0].rm_so,
813                                   force_redraw, q_level);
814           lineInfo[n].type = MT_COLOR_QUOTED;
815         }
816         else
817           lineInfo[n].type = MT_COLOR_NORMAL;
818
819         buf[smatch[0].rm_so] = c;
820       }
821       else
822         lineInfo[n].type = MT_COLOR_NORMAL;
823     }
824     else
825     {
826       if (q_classify && lineInfo[n].quote == NULL)
827         lineInfo[n].quote = classify_quote (QuoteList, buf + pmatch[0].rm_so,
828                               pmatch[0].rm_eo - pmatch[0].rm_so,
829                               force_redraw, q_level);
830       lineInfo[n].type = MT_COLOR_QUOTED;
831     }
832   }
833   else
834     lineInfo[n].type = MT_COLOR_NORMAL;
835
836   /* body patterns */
837   if (lineInfo[n].type == MT_COLOR_NORMAL || 
838       lineInfo[n].type == MT_COLOR_QUOTED)
839   {
840     size_t nl;
841
842     /* don't consider line endings part of the buffer
843      * for regex matching */
844     if ((nl = mutt_strlen (buf)) > 0 && buf[nl-1] == '\n')
845       buf[nl-1] = 0;
846
847     i = 0;
848     offset = 0;
849     lineInfo[n].chunks = 0;
850     do
851     {
852       if (!buf[offset])
853         break;
854
855       found = 0;
856       null_rx = 0;
857       color_line = ColorBodyList;
858       while (color_line)
859       {
860         if (regexec (&color_line->rx, buf + offset, 1, pmatch,
861                      (offset ? REG_NOTBOL : 0)) == 0)
862         {
863           if (pmatch[0].rm_eo != pmatch[0].rm_so)
864           {
865             if (!found)
866             {
867               if (++(lineInfo[n].chunks) > 1)
868                 safe_realloc (&(lineInfo[n].syntax), 
869                               (lineInfo[n].chunks) * sizeof (struct syntax_t));
870             }
871             i = lineInfo[n].chunks - 1;
872             pmatch[0].rm_so += offset;
873             pmatch[0].rm_eo += offset;
874             if (!found ||
875                 pmatch[0].rm_so < (lineInfo[n].syntax)[i].first ||
876                 (pmatch[0].rm_so == (lineInfo[n].syntax)[i].first &&
877                  pmatch[0].rm_eo > (lineInfo[n].syntax)[i].last))
878             {
879               (lineInfo[n].syntax)[i].color = color_line->pair;
880               (lineInfo[n].syntax)[i].first = pmatch[0].rm_so;
881               (lineInfo[n].syntax)[i].last = pmatch[0].rm_eo;
882             }
883             found = 1;
884             null_rx = 0;
885           }
886           else
887             null_rx = 1; /* empty regexp; don't add it, but keep looking */
888         }
889         color_line = color_line->next;
890       }
891
892       if (null_rx)
893         offset++; /* avoid degenerate cases */
894       else
895         offset = (lineInfo[n].syntax)[i].last;
896     } while (found || null_rx);
897     if (nl > 0)
898       buf[nl] = '\n';
899   }
900 }
901
902 static int is_ansi (unsigned char *buf)
903 {
904   while (*buf && (isdigit(*buf) || *buf == ';'))
905     buf++;
906   return (*buf == 'm');
907 }
908
909 static int check_attachment_marker (char *p)
910 {
911   char *q = AttachmentMarker;
912   
913   for (;*p == *q && *q && *p && *q != '\a' && *p != '\a'; p++, q++)
914     ;
915   return (int) (*p - *q);
916 }
917
918 static int grok_ansi(unsigned char *buf, int pos, ansi_attr *a)
919 {
920   int x = pos;
921
922   while (isdigit(buf[x]) || buf[x] == ';')
923     x++;
924
925   /* Character Attributes */
926   if (option (OPTALLOWANSI) && a != NULL && buf[x] == 'm')
927   {
928     if (pos == x)
929     {
930 #ifdef HAVE_COLOR
931       if (a->pair != -1)
932         mutt_free_color (a->fg, a->bg);
933 #endif
934       a->attr = ANSI_OFF;
935       a->pair = -1;
936     }
937     while (pos < x)
938     {
939       if (buf[pos] == '1' && (pos+1 == x || buf[pos+1] == ';'))
940       {
941         a->attr |= ANSI_BOLD;
942         pos += 2;
943       } 
944       else if (buf[pos] == '4' && (pos+1 == x || buf[pos+1] == ';'))
945       {
946         a->attr |= ANSI_UNDERLINE;
947         pos += 2;
948       }
949       else if (buf[pos] == '5' && (pos+1 == x || buf[pos+1] == ';'))
950       {
951         a->attr |= ANSI_BLINK;
952         pos += 2;
953       }
954       else if (buf[pos] == '7' && (pos+1 == x || buf[pos+1] == ';'))
955       {
956         a->attr |= ANSI_REVERSE;
957         pos += 2;
958       }
959       else if (buf[pos] == '0' && (pos+1 == x || buf[pos+1] == ';'))
960       {
961 #ifdef HAVE_COLOR
962         if (a->pair != -1)
963           mutt_free_color(a->fg,a->bg);
964 #endif
965         a->attr = ANSI_OFF;
966         a->pair = -1;
967         pos += 2;
968       }
969       else if (buf[pos] == '3' && isdigit(buf[pos+1]))
970       {
971 #ifdef HAVE_COLOR
972         if (a->pair != -1)
973           mutt_free_color(a->fg,a->bg);
974 #endif
975         a->pair = -1;
976         a->attr |= ANSI_COLOR;
977         a->fg = buf[pos+1] - '0';
978         pos += 3;
979       }
980       else if (buf[pos] == '4' && isdigit(buf[pos+1]))
981       {
982 #ifdef HAVE_COLOR
983         if (a->pair != -1)
984           mutt_free_color(a->fg,a->bg);
985 #endif
986         a->pair = -1;
987         a->attr |= ANSI_COLOR;
988         a->bg = buf[pos+1] - '0';
989         pos += 3;
990       }
991       else 
992       {
993         while (pos < x && buf[pos] != ';') pos++;
994         pos++;
995       }
996     }
997   }
998   pos = x;
999   return pos;
1000 }
1001
1002 /* trim tail of buf so that it contains complete multibyte characters */
1003 static int
1004 trim_incomplete_mbyte(unsigned char *buf, size_t len)
1005 {
1006   mbstate_t mbstate;
1007   size_t k;
1008
1009   memset (&mbstate, 0, sizeof (mbstate));
1010   for (; len > 0; buf += k, len -= k)
1011   {
1012     k = mbrtowc (NULL, (char *) buf, len, &mbstate);
1013     if (k == -2) 
1014       break; 
1015     else if (k == -1 || k == 0) 
1016       k = 1;
1017   }
1018   *buf = '\0';
1019
1020   return len;
1021 }
1022
1023 static int
1024 fill_buffer (FILE *f, LOFF_T *last_pos, LOFF_T offset, unsigned char **buf,
1025              unsigned char **fmt, size_t *blen, int *buf_ready)
1026 {
1027   unsigned char *p, *q;
1028   static int b_read;
1029   int l;
1030
1031   if (*buf_ready == 0)
1032   {
1033     if (offset != *last_pos)
1034       fseeko (f, offset, 0);
1035     if ((*buf = (unsigned char *) mutt_read_line ((char *) *buf, blen, f, &l, M_EOL)) == NULL)
1036     {
1037       fmt[0] = 0;
1038       return (-1);
1039     }
1040     *last_pos = ftello (f);
1041     b_read = (int) (*last_pos - offset);
1042     *buf_ready = 1;
1043
1044     safe_realloc (fmt, *blen);
1045
1046     /* incomplete mbyte characters trigger a segfault in regex processing for
1047      * certain versions of glibc. Trim them if necessary. */
1048     if (b_read == *blen - 2)
1049       b_read -= trim_incomplete_mbyte(*buf, b_read);
1050     
1051     /* copy "buf" to "fmt", but without bold and underline controls */
1052     p = *buf;
1053     q = *fmt;
1054     while (*p)
1055     {
1056       if (*p == '\010' && (p > *buf))
1057       {
1058         if (*(p+1) == '_')      /* underline */
1059           p += 2;
1060         else if (*(p+1) && q > *fmt)    /* bold or overstrike */
1061         {
1062           *(q-1) = *(p+1);
1063           p += 2;
1064         }
1065         else                    /* ^H */
1066           *q++ = *p++;
1067       }
1068       else if (*p == '\033' && *(p+1) == '[' && is_ansi (p + 2))
1069       {
1070         while (*p++ != 'm')     /* skip ANSI sequence */
1071           ;
1072       }
1073       else if (*p == '\033' && *(p+1) == ']' && check_attachment_marker ((char *) p) == 0)
1074       {
1075         dprint (2, (debugfile, "fill_buffer: Seen attachment marker.\n"));
1076         while (*p++ != '\a')    /* skip pseudo-ANSI sequence */
1077           ;
1078       }
1079       else
1080         *q++ = *p++;
1081     }
1082     *q = 0;
1083   }
1084   return b_read;
1085 }
1086
1087
1088 static int format_line (struct line_t **lineInfo, int n, unsigned char *buf,
1089                         int flags, ansi_attr *pa, int cnt,
1090                         int *pspace, int *pvch, int *pcol, int *pspecial)
1091 {
1092   int space = -1; /* index of the last space or TAB */
1093   int col = option (OPTMARKERS) ? (*lineInfo)[n].continuation : 0;
1094   int ch, vch, k, last_special = -1, special = 0, t;
1095   wchar_t wc;
1096   mbstate_t mbstate;
1097   int wrap_cols = mutt_term_width ((flags & M_PAGER_NOWRAP) ? 0 : Wrap);
1098
1099   if (check_attachment_marker ((char *)buf) == 0)
1100     wrap_cols = COLS;
1101
1102   /* FIXME: this should come from lineInfo */
1103   memset(&mbstate, 0, sizeof(mbstate));
1104
1105   for (ch = 0, vch = 0; ch < cnt; ch += k, vch += k)
1106   {
1107     /* Handle ANSI sequences */
1108     while (cnt-ch >= 2 && buf[ch] == '\033' && buf[ch+1] == '[' &&
1109            is_ansi (buf+ch+2))
1110       ch = grok_ansi (buf, ch+2, pa) + 1;
1111
1112     while (cnt-ch >= 2 && buf[ch] == '\033' && buf[ch+1] == ']' &&
1113            check_attachment_marker ((char *) buf+ch) == 0)
1114     {
1115       while (buf[ch++] != '\a')
1116         if (ch >= cnt)
1117           break;
1118     }
1119
1120     /* is anything left to do? */
1121     if (ch >= cnt)
1122       break;
1123     
1124     k = mbrtowc (&wc, (char *)buf+ch, cnt-ch, &mbstate);
1125     if (k == -2 || k == -1)
1126     {
1127       dprint (1, (debugfile, "%s:%d: mbrtowc returned %d; errno = %d.\n",
1128                   __FILE__, __LINE__, k, errno));
1129       if (col + 4 > wrap_cols)
1130         break;
1131       col += 4;
1132       if (pa)
1133         printw ("\\%03o", buf[ch]);
1134       k = 1;
1135       continue;
1136     }
1137     if (k == 0)
1138       k = 1;
1139
1140     if (Charset_is_utf8 && (wc == 0x200B || wc == 0xFEFF))
1141     {
1142         dprint (3, (debugfile, "skip zero-width character U+%04X\n", (unsigned short)wc));
1143         continue;
1144     }
1145
1146     /* Handle backspace */
1147     special = 0;
1148     if (IsWPrint (wc))
1149     {
1150       wchar_t wc1;
1151       mbstate_t mbstate1;
1152       int k1, k2;
1153
1154       while ((wc1 = 0, mbstate1 = mbstate,
1155               k1 = k + mbrtowc (&wc1, (char *)buf+ch+k, cnt-ch-k, &mbstate1),
1156               k1 - k > 0 && wc1 == '\b') &&
1157              (wc1 = 0,
1158               k2 = mbrtowc (&wc1, (char *)buf+ch+k1, cnt-ch-k1, &mbstate1),
1159               k2 > 0 && IsWPrint (wc1)))
1160       {
1161         if (wc == wc1)
1162         {
1163           special |= (wc == '_' && special & A_UNDERLINE)
1164             ? A_UNDERLINE : A_BOLD;
1165         }
1166         else if (wc == '_' || wc1 == '_')
1167         {
1168           special |= A_UNDERLINE;
1169           wc = (wc1 == '_') ? wc : wc1;
1170         }
1171         else
1172         {
1173           /* special = 0; / * overstrike: nothing to do! */
1174           wc = wc1;
1175         }
1176         ch += k1;
1177         k = k2;
1178         mbstate = mbstate1;
1179       }
1180     }
1181
1182     if (pa &&
1183         ((flags & (M_SHOWCOLOR | M_SEARCH | M_PAGER_MARKER)) ||
1184          special || last_special || pa->attr))
1185     {
1186       resolve_color (*lineInfo, n, vch, flags, special, pa);
1187       last_special = special;
1188     }
1189
1190     if (IsWPrint (wc))
1191     {
1192       if (wc == ' ')
1193         space = ch;
1194       t = wcwidth (wc);
1195       if (col + t > wrap_cols)
1196         break;
1197       col += t;
1198       if (pa)
1199         mutt_addwch (wc);
1200     }
1201     else if (wc == '\n')
1202       break;
1203     else if (wc == '\t')
1204     {
1205       space = ch;
1206       t = (col & ~7) + 8;
1207       if (t > wrap_cols)
1208         break;
1209       if (pa)
1210         for (; col < t; col++)
1211           addch (' ');
1212       else
1213         col = t;
1214     }
1215     else if (wc < 0x20 || wc == 0x7f)
1216     {
1217       if (col + 2 > wrap_cols)
1218         break;
1219       col += 2;
1220       if (pa)
1221         printw ("^%c", ('@' + wc) & 0x7f);
1222     }
1223     else if (wc < 0x100)
1224     {
1225       if (col + 4 > wrap_cols)
1226         break;
1227       col += 4;
1228       if (pa)
1229         printw ("\\%03o", wc);
1230     }
1231     else
1232     {
1233       if (col + 1 > wrap_cols)
1234         break;
1235       ++col;
1236       if (pa)
1237         addch (replacement_char ());
1238     }
1239   }
1240   *pspace = space;
1241   *pcol = col;
1242   *pvch = vch;
1243   *pspecial = special;
1244   return ch;
1245 }
1246
1247 /*
1248  * Args:
1249  *      flags   M_SHOWFLAT, show characters (used for displaying help)
1250  *              M_SHOWCOLOR, show characters in color
1251  *                      otherwise don't show characters
1252  *              M_HIDE, don't show quoted text
1253  *              M_SEARCH, resolve search patterns
1254  *              M_TYPES, compute line's type
1255  *              M_PAGER_NSKIP, keeps leading whitespace
1256  *              M_PAGER_MARKER, eventually show markers
1257  *
1258  * Return values:
1259  *      -1      EOF was reached
1260  *      0       normal exit, line was not displayed
1261  *      >0      normal exit, line was displayed
1262  */
1263
1264 static int
1265 display_line (FILE *f, LOFF_T *last_pos, struct line_t **lineInfo, int n, 
1266               int *last, int *max, int flags, struct q_class_t **QuoteList,
1267               int *q_level, int *force_redraw, regex_t *SearchRE)
1268 {
1269   unsigned char *buf = NULL, *fmt = NULL;
1270   size_t buflen = 0;
1271   unsigned char *buf_ptr = buf;
1272   int ch, vch, col, cnt, b_read;
1273   int buf_ready = 0, change_last = 0;
1274   int special;
1275   int offset;
1276   int def_color;
1277   int m;
1278   int rc = -1;
1279   ansi_attr a = {0,0,0,-1};
1280   regmatch_t pmatch[1];
1281
1282   if (n == *last)
1283   {
1284     (*last)++;
1285     change_last = 1;
1286   }
1287
1288   if (*last == *max)
1289   {
1290     safe_realloc (lineInfo, sizeof (struct line_t) * (*max += LINES));
1291     for (ch = *last; ch < *max ; ch++)
1292     {
1293       memset (&((*lineInfo)[ch]), 0, sizeof (struct line_t));
1294       (*lineInfo)[ch].type = -1;
1295       (*lineInfo)[ch].search_cnt = -1;
1296       (*lineInfo)[ch].syntax = safe_malloc (sizeof (struct syntax_t));
1297       ((*lineInfo)[ch].syntax)[0].first = ((*lineInfo)[ch].syntax)[0].last = -1;
1298     }
1299   }
1300
1301   /* only do color hiliting if we are viewing a message */
1302   if (flags & (M_SHOWCOLOR | M_TYPES))
1303   {
1304     if ((*lineInfo)[n].type == -1)
1305     {
1306       /* determine the line class */
1307       if (fill_buffer (f, last_pos, (*lineInfo)[n].offset, &buf, &fmt, &buflen, &buf_ready) < 0)
1308       {
1309         if (change_last)
1310           (*last)--;
1311         goto out;
1312       }
1313
1314       resolve_types ((char *) fmt, (char *) buf, *lineInfo, n, *last,
1315                       QuoteList, q_level, force_redraw, flags & M_SHOWCOLOR);
1316
1317       /* avoid race condition for continuation lines when scrolling up */
1318       for (m = n + 1; m < *last && (*lineInfo)[m].offset && (*lineInfo)[m].continuation; m++)
1319         (*lineInfo)[m].type = (*lineInfo)[n].type;
1320     }
1321
1322     /* this also prevents searching through the hidden lines */
1323     if ((flags & M_HIDE) && (*lineInfo)[n].type == MT_COLOR_QUOTED)
1324       flags = 0; /* M_NOSHOW */
1325   }
1326
1327   /* At this point, (*lineInfo[n]).quote may still be undefined. We 
1328    * don't want to compute it every time M_TYPES is set, since this
1329    * would slow down the "bottom" function unacceptably. A compromise
1330    * solution is hence to call regexec() again, just to find out the
1331    * length of the quote prefix.
1332    */
1333   if ((flags & M_SHOWCOLOR) && !(*lineInfo)[n].continuation &&
1334       (*lineInfo)[n].type == MT_COLOR_QUOTED && (*lineInfo)[n].quote == NULL)
1335   {
1336     if (fill_buffer (f, last_pos, (*lineInfo)[n].offset, &buf, &fmt, &buflen, &buf_ready) < 0)
1337     {
1338       if (change_last)
1339         (*last)--;
1340       goto out;
1341     }
1342     regexec ((regex_t *) QuoteRegexp.rx, (char *) fmt, 1, pmatch, 0);
1343     (*lineInfo)[n].quote = classify_quote (QuoteList,
1344                             (char *) fmt + pmatch[0].rm_so,
1345                             pmatch[0].rm_eo - pmatch[0].rm_so,
1346                             force_redraw, q_level);
1347   }
1348
1349   if ((flags & M_SEARCH) && !(*lineInfo)[n].continuation && (*lineInfo)[n].search_cnt == -1) 
1350   {
1351     if (fill_buffer (f, last_pos, (*lineInfo)[n].offset, &buf, &fmt, &buflen, &buf_ready) < 0)
1352     {
1353       if (change_last)
1354         (*last)--;
1355       goto out;
1356     }
1357
1358     offset = 0;
1359     (*lineInfo)[n].search_cnt = 0;
1360     while (regexec (SearchRE, (char *) fmt + offset, 1, pmatch, (offset ? REG_NOTBOL : 0)) == 0)
1361     {
1362       if (++((*lineInfo)[n].search_cnt) > 1)
1363         safe_realloc (&((*lineInfo)[n].search),
1364                       ((*lineInfo)[n].search_cnt) * sizeof (struct syntax_t));
1365       else
1366         (*lineInfo)[n].search = safe_malloc (sizeof (struct syntax_t));
1367       pmatch[0].rm_so += offset;
1368       pmatch[0].rm_eo += offset;
1369       ((*lineInfo)[n].search)[(*lineInfo)[n].search_cnt - 1].first = pmatch[0].rm_so;
1370       ((*lineInfo)[n].search)[(*lineInfo)[n].search_cnt - 1].last = pmatch[0].rm_eo;
1371
1372       if (pmatch[0].rm_eo == pmatch[0].rm_so)
1373         offset++; /* avoid degenerate cases */
1374       else
1375         offset = pmatch[0].rm_eo;
1376       if (!fmt[offset])
1377         break;
1378     }
1379   }
1380
1381   if (!(flags & M_SHOW) && (*lineInfo)[n+1].offset > 0)
1382   {
1383     /* we've already scanned this line, so just exit */
1384     rc = 0;
1385     goto out;
1386   }
1387   if ((flags & M_SHOWCOLOR) && *force_redraw && (*lineInfo)[n+1].offset > 0)
1388   {
1389     /* no need to try to display this line... */
1390     rc = 1;
1391     goto out; /* fake display */
1392   }
1393
1394   if ((b_read = fill_buffer (f, last_pos, (*lineInfo)[n].offset, &buf, &fmt, 
1395                              &buflen, &buf_ready)) < 0)
1396   {
1397     if (change_last)
1398       (*last)--;
1399     goto out;
1400   }
1401
1402   /* now chose a good place to break the line */
1403   cnt = format_line (lineInfo, n, buf, flags, 0, b_read, &ch, &vch, &col, &special);
1404   buf_ptr = buf + cnt;
1405
1406   /* move the break point only if smart_wrap is set */
1407   if (option (OPTWRAP))
1408   {
1409     if (cnt < b_read)
1410     {
1411       if (ch != -1 && buf[0] != ' ' && buf[0] != '\t' &&
1412           buf[cnt] != ' ' && buf[cnt] != '\t' && buf[cnt] != '\n' && buf[cnt] != '\r')
1413       {
1414         buf_ptr = buf + ch;
1415         /* skip trailing blanks */
1416         while (ch && (buf[ch] == ' ' || buf[ch] == '\t' || buf[ch] == '\r'))
1417           ch--;
1418         /* a very long word with leading spaces causes infinite wrapping */
1419         if ((!ch) && (flags & M_PAGER_NSKIP))
1420           buf_ptr = buf + cnt;
1421         else
1422           cnt = ch + 1;
1423       }
1424       else
1425         buf_ptr = buf + cnt; /* a very long word... */
1426     }
1427     if (!(flags & M_PAGER_NSKIP))
1428       /* skip leading blanks on the next line too */
1429       while (*buf_ptr == ' ' || *buf_ptr == '\t') 
1430         buf_ptr++;
1431   }
1432
1433   if (*buf_ptr == '\r')
1434     buf_ptr++;
1435   if (*buf_ptr == '\n')
1436     buf_ptr++;
1437
1438   if ((int) (buf_ptr - buf) < b_read && !(*lineInfo)[n+1].continuation)
1439     append_line (*lineInfo, n, (int) (buf_ptr - buf));
1440   (*lineInfo)[n+1].offset = (*lineInfo)[n].offset + (long) (buf_ptr - buf);
1441
1442   /* if we don't need to display the line we are done */
1443   if (!(flags & M_SHOW))
1444   {
1445     rc = 0;
1446     goto out;
1447   }
1448
1449   /* display the line */
1450   format_line (lineInfo, n, buf, flags, &a, cnt, &ch, &vch, &col, &special);
1451
1452   /* avoid a bug in ncurses... */
1453 #ifndef USE_SLANG_CURSES
1454   if (col == 0)
1455   {
1456     SETCOLOR (MT_COLOR_NORMAL);
1457     addch (' ');
1458   }
1459 #endif
1460
1461   /* end the last color pattern (needed by S-Lang) */
1462   if (special || (col != COLS && (flags & (M_SHOWCOLOR | M_SEARCH))))
1463     resolve_color (*lineInfo, n, vch, flags, 0, &a);
1464           
1465   /*
1466    * Fill the blank space at the end of the line with the prevailing color.
1467    * ncurses does an implicit clrtoeol() when you do addch('\n') so we have
1468    * to make sure to reset the color *after* that
1469    */
1470   if (flags & M_SHOWCOLOR)
1471   {
1472     m = ((*lineInfo)[n].continuation) ? ((*lineInfo)[n].syntax)[0].first : n;
1473     if ((*lineInfo)[m].type == MT_COLOR_HEADER)
1474       def_color = ((*lineInfo)[m].syntax)[0].color;
1475     else
1476       def_color = ColorDefs[ (*lineInfo)[m].type ];
1477
1478     attrset (def_color);
1479 #ifdef HAVE_BKGDSET
1480     bkgdset (def_color | ' ');
1481 #endif
1482   }
1483
1484   /* ncurses always wraps lines when you get to the right side of the
1485    * screen, but S-Lang seems to only wrap if the next character is *not*
1486    * a newline (grr!).
1487    */
1488 #ifndef USE_SLANG_CURSES
1489     if (col < COLS)
1490 #endif
1491       addch ('\n');
1492
1493   /*
1494    * reset the color back to normal.  This *must* come after the
1495    * addch('\n'), otherwise the color for this line will not be
1496    * filled to the right margin.
1497    */
1498   if (flags & M_SHOWCOLOR)
1499   {
1500     SETCOLOR(MT_COLOR_NORMAL);
1501     BKGDSET(MT_COLOR_NORMAL);
1502   }
1503
1504   /* build a return code */
1505   if (!(flags & M_SHOW))
1506     flags = 0;
1507
1508   rc = flags;
1509
1510 out:
1511   FREE(&buf);
1512   FREE(&fmt);
1513   return rc;
1514 }
1515
1516 static int
1517 upNLines (int nlines, struct line_t *info, int cur, int hiding)
1518 {
1519   while (cur > 0 && nlines > 0)
1520   {
1521     cur--;
1522     if (!hiding || info[cur].type != MT_COLOR_QUOTED)
1523       nlines--;
1524   }
1525
1526   return cur;
1527 }
1528
1529 static struct mapping_t PagerHelp[] = {
1530   { N_("Exit"), OP_EXIT },
1531   { N_("PrevPg"), OP_PREV_PAGE },
1532   { N_("NextPg"), OP_NEXT_PAGE },
1533   { NULL,       0 }
1534 };
1535 static struct mapping_t PagerHelpExtra[] = {
1536   { N_("View Attachm."), OP_VIEW_ATTACHMENTS },
1537   { N_("Del"), OP_DELETE },
1538   { N_("Reply"), OP_REPLY },
1539   { N_("Next"), OP_MAIN_NEXT_UNDELETED },
1540   { NULL,       0 }
1541 };
1542
1543
1544
1545 /* This pager is actually not so simple as it once was.  It now operates in
1546    two modes: one for viewing messages and the other for viewing help.  These
1547    can be distinguished by whether or not ``hdr'' is NULL.  The ``hdr'' arg
1548    is there so that we can do operations on the current message without the
1549    need to pop back out to the main-menu.  */
1550 int 
1551 mutt_pager (const char *banner, const char *fname, int flags, pager_t *extra)
1552 {
1553   static char searchbuf[STRING] = "";
1554   char buffer[LONG_STRING];
1555   char helpstr[SHORT_STRING*2];
1556   char tmphelp[SHORT_STRING*2];
1557   int maxLine, lastLine = 0;
1558   struct line_t *lineInfo;
1559   struct q_class_t *QuoteList = NULL;
1560   int i, j, ch = 0, rc = -1, hideQuoted = 0, q_level = 0, force_redraw = 0;
1561   int lines = 0, curline = 0, topline = 0, oldtopline = 0, err, first = 1;
1562   int r = -1, wrapped = 0, searchctx = 0;
1563   int redraw = REDRAW_FULL;
1564   FILE *fp = NULL;
1565   LOFF_T last_pos = 0, last_offset = 0;
1566   int old_smart_wrap, old_markers;
1567   struct stat sb;
1568   regex_t SearchRE;
1569   int SearchCompiled = 0, SearchFlag = 0, SearchBack = 0;
1570   int has_types = (IsHeader(extra) || (flags & M_SHOWCOLOR)) ? M_TYPES : 0; /* main message or rfc822 attachment */
1571
1572   int bodyoffset = 1;                   /* offset of first line of real text */
1573   int statusoffset = 0;                 /* offset for the status bar */
1574   int helpoffset = LINES - 2;           /* offset for the help bar. */
1575   int bodylen = LINES - 2 - bodyoffset; /* length of displayable area */
1576
1577   MUTTMENU *index = NULL;               /* the Pager Index (PI) */
1578   int indexoffset = 0;                  /* offset for the PI */
1579   int indexlen = PagerIndexLines;       /* indexlen not always == PIL */
1580   int indicator = indexlen / 3;         /* the indicator line of the PI */
1581   int old_PagerIndexLines;              /* some people want to resize it
1582                                          * while inside the pager... */
1583
1584   if (!(flags & M_SHOWCOLOR))
1585     flags |= M_SHOWFLAT;
1586
1587   if ((fp = fopen (fname, "r")) == NULL)
1588   {
1589     mutt_perror (fname);
1590     return (-1);
1591   }
1592
1593   if (stat (fname, &sb) != 0)
1594   {
1595     mutt_perror (fname);
1596     safe_fclose (&fp);
1597     return (-1);
1598   }
1599   unlink (fname);
1600
1601   /* Initialize variables */
1602
1603   if (IsHeader (extra) && !extra->hdr->read)
1604   {
1605     Context->msgnotreadyet = extra->hdr->msgno;
1606     mutt_set_flag (Context, extra->hdr, M_READ, 1);
1607   }
1608
1609   lineInfo = safe_malloc (sizeof (struct line_t) * (maxLine = LINES));
1610   for (i = 0 ; i < maxLine ; i++)
1611   {
1612     memset (&lineInfo[i], 0, sizeof (struct line_t));
1613     lineInfo[i].type = -1;
1614     lineInfo[i].search_cnt = -1;
1615     lineInfo[i].syntax = safe_malloc (sizeof (struct syntax_t));
1616     (lineInfo[i].syntax)[0].first = (lineInfo[i].syntax)[0].last = -1;
1617   }
1618
1619   mutt_compile_help (helpstr, sizeof (helpstr), MENU_PAGER, PagerHelp);
1620   if (IsHeader (extra))
1621   {
1622     strfcpy (tmphelp, helpstr, sizeof (tmphelp));
1623     mutt_compile_help (buffer, sizeof (buffer), MENU_PAGER, PagerHelpExtra);
1624     snprintf (helpstr, sizeof (helpstr), "%s %s", tmphelp, buffer);
1625   }
1626   if (!InHelp)
1627   {
1628     strfcpy (tmphelp, helpstr, sizeof (tmphelp));
1629     mutt_make_help (buffer, sizeof (buffer), _("Help"), MENU_PAGER, OP_HELP);
1630     snprintf (helpstr, sizeof (helpstr), "%s %s", tmphelp, buffer);
1631   }
1632
1633   while (ch != -1)
1634   {
1635     mutt_curs_set (0);
1636
1637     if (redraw & REDRAW_FULL)
1638     {
1639       SETCOLOR (MT_COLOR_NORMAL);
1640       /* clear() doesn't optimize screen redraws */
1641       move (0, 0);
1642       clrtobot ();
1643
1644       if (IsHeader (extra) && Context->vcount + 1 < PagerIndexLines)
1645         indexlen = Context->vcount + 1;
1646       else
1647         indexlen = PagerIndexLines;
1648
1649       indicator = indexlen / 3;
1650
1651       if (option (OPTSTATUSONTOP))
1652       {
1653         indexoffset = 0;
1654         statusoffset = IsHeader (extra) ? indexlen : 0;
1655         bodyoffset = statusoffset + 1;
1656         helpoffset = LINES - 2;
1657         bodylen = helpoffset - bodyoffset;
1658         if (!option (OPTHELP))
1659           bodylen++;
1660       }
1661       else
1662       {
1663         helpoffset = 0;
1664         indexoffset = 1;
1665         statusoffset = LINES - 2;
1666         if (!option (OPTHELP))
1667           indexoffset = 0;
1668         bodyoffset = indexoffset + (IsHeader (extra) ? indexlen : 0);
1669         bodylen = statusoffset - bodyoffset;
1670       }
1671
1672       if (option (OPTHELP))
1673       {
1674         SETCOLOR (MT_COLOR_STATUS);
1675         move (helpoffset, 0);
1676         mutt_paddstr (COLS, helpstr);
1677         SETCOLOR (MT_COLOR_NORMAL);
1678       }
1679
1680 #if defined (USE_SLANG_CURSES) || defined (HAVE_RESIZETERM)
1681       if (Resize != NULL)
1682       {
1683         if ((SearchCompiled = Resize->SearchCompiled))
1684         {
1685           REGCOMP
1686             (&SearchRE, searchbuf, REG_NEWLINE | mutt_which_case (searchbuf));
1687           SearchFlag = M_SEARCH;
1688           SearchBack = Resize->SearchBack;
1689         }
1690         lines = Resize->line;
1691         redraw |= REDRAW_SIGWINCH;
1692
1693         FREE (&Resize);
1694       }
1695 #endif
1696
1697       if (IsHeader (extra) && PagerIndexLines)
1698       {
1699         if (index == NULL)
1700         {
1701           /* only allocate the space if/when we need the index.
1702              Initialise the menu as per the main index */
1703           index = mutt_new_menu(MENU_MAIN);
1704           index->make_entry = index_make_entry;
1705           index->color = index_color;
1706           index->max = Context->vcount;
1707           index->current = extra->hdr->virtual;
1708         }
1709
1710         SETCOLOR (MT_COLOR_NORMAL);
1711         index->offset  = indexoffset + (option (OPTSTATUSONTOP) ? 1 : 0);
1712
1713         index->pagelen = indexlen - 1;
1714
1715         /* some fudge to work out where abouts the indicator should go */
1716         if (index->current - indicator < 0)
1717           index->top = 0;
1718         else if (index->max - index->current < index->pagelen - indicator)
1719           index->top = index->max - index->pagelen;
1720         else
1721           index->top = index->current - indicator;
1722
1723         menu_redraw_index(index);
1724       }
1725
1726       redraw |= REDRAW_BODY | REDRAW_INDEX | REDRAW_STATUS;
1727       mutt_show_error ();
1728     }
1729
1730     if (redraw & REDRAW_SIGWINCH)
1731     {
1732       i = -1;
1733       j = -1;
1734       while (display_line (fp, &last_pos, &lineInfo, ++i, &lastLine, &maxLine,
1735              has_types | SearchFlag | (flags & M_PAGER_NOWRAP), &QuoteList, &q_level, &force_redraw,
1736              &SearchRE) == 0)
1737         if (!lineInfo[i].continuation && ++j == lines)
1738         {
1739           topline = i;
1740           if (!SearchFlag)
1741             break;
1742         }
1743     }
1744
1745     if ((redraw & REDRAW_BODY) || topline != oldtopline)
1746     {
1747       do {
1748         move (bodyoffset, 0);
1749         curline = oldtopline = topline;
1750         lines = 0;
1751         force_redraw = 0;
1752
1753         while (lines < bodylen && lineInfo[curline].offset <= sb.st_size - 1)
1754         {
1755           if (display_line (fp, &last_pos, &lineInfo, curline, &lastLine, 
1756                             &maxLine,
1757                             (flags & M_DISPLAYFLAGS) | hideQuoted | SearchFlag | (flags & M_PAGER_NOWRAP),
1758                             &QuoteList, &q_level, &force_redraw, &SearchRE) > 0)
1759             lines++;
1760           curline++;
1761         }
1762         last_offset = lineInfo[curline].offset;
1763       } while (force_redraw);
1764
1765       SETCOLOR (MT_COLOR_TILDE);
1766       BKGDSET (MT_COLOR_TILDE);
1767       while (lines < bodylen)
1768       {
1769         clrtoeol ();
1770         if (option (OPTTILDE))
1771           addch ('~');
1772         addch ('\n');
1773         lines++;
1774       }
1775       /* We are going to update the pager status bar, so it isn't
1776        * necessary to reset to normal color now. */
1777
1778       redraw |= REDRAW_STATUS; /* need to update the % seen */
1779     }
1780
1781     if (redraw & REDRAW_STATUS)
1782     {
1783       struct hdr_format_info hfi;
1784       char pager_progress_str[4];
1785
1786       hfi.ctx = Context;
1787       hfi.pager_progress = pager_progress_str;
1788
1789       if (last_pos < sb.st_size - 1)
1790         snprintf(pager_progress_str, sizeof(pager_progress_str), OFF_T_FMT "%%", (100 * last_offset / sb.st_size));
1791       else
1792         strfcpy(pager_progress_str, (topline == 0) ? "all" : "end", sizeof(pager_progress_str));
1793
1794       /* print out the pager status bar */
1795       SETCOLOR (MT_COLOR_STATUS);
1796       BKGDSET (MT_COLOR_STATUS);
1797       CLEARLINE (statusoffset);
1798
1799       if (IsHeader (extra) || IsMsgAttach (extra))
1800       {
1801         size_t l1 = COLS * MB_LEN_MAX;
1802         size_t l2 = sizeof (buffer);
1803         hfi.hdr = (IsHeader (extra)) ? extra->hdr : extra->bdy->hdr;
1804         mutt_make_string_info (buffer, l1 < l2 ? l1 : l2, NONULL (PagerFmt), &hfi, M_FORMAT_MAKEPRINT);
1805         mutt_paddstr (COLS, buffer);
1806       }
1807       else
1808       {
1809         char bn[STRING];
1810         snprintf (bn, sizeof (bn), "%s (%s)", banner, pager_progress_str);
1811         mutt_paddstr (COLS, bn);
1812       }
1813       BKGDSET (MT_COLOR_NORMAL);
1814       SETCOLOR (MT_COLOR_NORMAL);
1815     }
1816
1817     if ((redraw & REDRAW_INDEX) && index)
1818     {
1819       /* redraw the pager_index indicator, because the
1820        * flags for this message might have changed. */
1821       menu_redraw_current (index);
1822
1823       /* print out the index status bar */
1824       menu_status_line (buffer, sizeof (buffer), index, NONULL(Status));
1825  
1826       move (indexoffset + (option (OPTSTATUSONTOP) ? 0 : (indexlen - 1)), 0);
1827       SETCOLOR (MT_COLOR_STATUS);
1828       BKGDSET (MT_COLOR_STATUS);
1829       mutt_paddstr (COLS, buffer);
1830       SETCOLOR (MT_COLOR_NORMAL);
1831       BKGDSET (MT_COLOR_NORMAL);
1832     }
1833
1834     redraw = 0;
1835
1836     if (option(OPTBRAILLEFRIENDLY)) {
1837       if (brailleLine!=-1) {
1838         move(brailleLine+1, 0);
1839         brailleLine = -1;
1840       }
1841     } else move (statusoffset, COLS-1);
1842     mutt_refresh ();
1843
1844     if (IsHeader (extra) && OldHdr == extra->hdr && TopLine != topline
1845         && lineInfo[curline].offset < sb.st_size-1)
1846     {
1847       if (TopLine - topline > lines)
1848         topline += lines;
1849       else
1850         topline = TopLine;
1851       continue;
1852     }
1853     else
1854       OldHdr = NULL;
1855       
1856     ch = km_dokey (MENU_PAGER);
1857     if (ch != -1)
1858       mutt_clear_error ();
1859     mutt_curs_set (1);
1860
1861     if (SigInt)
1862     {
1863       mutt_query_exit ();
1864       continue;
1865     }
1866 #if defined (USE_SLANG_CURSES) || defined (HAVE_RESIZETERM)
1867     else if (SigWinch)
1868     {
1869       mutt_resize_screen ();
1870
1871       /* Store current position. */
1872       lines = -1;
1873       for (i = 0; i <= topline; i++)
1874         if (!lineInfo[i].continuation)
1875           lines++;
1876
1877       if (flags & M_PAGER_RETWINCH)
1878       {
1879         Resize = safe_malloc (sizeof (struct resize));
1880
1881         Resize->line = lines;
1882         Resize->SearchCompiled = SearchCompiled;
1883         Resize->SearchBack = SearchBack;
1884
1885         ch = -1;
1886         rc = OP_REFORMAT_WINCH;
1887       }
1888       else
1889       {
1890         for (i = 0; i < maxLine; i++)
1891         {
1892           lineInfo[i].offset = 0;
1893           lineInfo[i].type = -1;
1894           lineInfo[i].continuation = 0;
1895           lineInfo[i].chunks = 0;
1896           lineInfo[i].search_cnt = -1;
1897           lineInfo[i].quote = NULL;
1898
1899           safe_realloc (&(lineInfo[i].syntax),
1900                         sizeof (struct syntax_t));
1901           if (SearchCompiled && lineInfo[i].search)
1902               FREE (&(lineInfo[i].search));
1903         }
1904
1905         lastLine = 0;
1906         topline = 0;
1907
1908         redraw = REDRAW_FULL | REDRAW_SIGWINCH;
1909         ch = 0;
1910       }
1911
1912       SigWinch = 0;
1913       clearok(stdscr,TRUE);/*force complete redraw*/
1914       continue;
1915     }
1916 #endif
1917     else if (ch == -1)
1918     {
1919       ch = 0;
1920       continue;
1921     }
1922
1923     rc = ch;
1924
1925     switch (ch)
1926     {
1927       case OP_EXIT:
1928         rc = -1;
1929         ch = -1;
1930         break;
1931
1932       case OP_NEXT_PAGE:
1933         if (lineInfo[curline].offset < sb.st_size-1)
1934         {
1935           topline = upNLines (PagerContext, lineInfo, curline, hideQuoted);
1936         }
1937         else if (option (OPTPAGERSTOP))
1938         {
1939           /* emulate "less -q" and don't go on to the next message. */
1940           mutt_error _("Bottom of message is shown.");
1941         }
1942         else
1943         {
1944           /* end of the current message, so display the next message. */
1945           rc = OP_MAIN_NEXT_UNDELETED;
1946           ch = -1;
1947         }
1948         break;
1949
1950       case OP_PREV_PAGE:
1951         if (topline != 0)
1952         {
1953           topline = upNLines (bodylen-PagerContext, lineInfo, topline, hideQuoted);
1954         }
1955         else
1956           mutt_error _("Top of message is shown.");
1957         break;
1958
1959       case OP_NEXT_LINE:
1960         if (lineInfo[curline].offset < sb.st_size-1)
1961         {
1962           topline++;
1963           if (hideQuoted)
1964           {
1965             while (lineInfo[topline].type == MT_COLOR_QUOTED &&
1966                    topline < lastLine)
1967               topline++;
1968           }
1969         }
1970         else
1971           mutt_error _("Bottom of message is shown.");
1972         break;
1973
1974       case OP_PREV_LINE:
1975         if (topline)
1976           topline = upNLines (1, lineInfo, topline, hideQuoted);
1977         else
1978           mutt_error _("Top of message is shown.");
1979         break;
1980
1981       case OP_PAGER_TOP:
1982         if (topline)
1983           topline = 0;
1984         else
1985           mutt_error _("Top of message is shown.");
1986         break;
1987
1988       case OP_HALF_UP:
1989         if (topline)
1990           topline = upNLines (bodylen/2, lineInfo, topline, hideQuoted);
1991         else
1992           mutt_error _("Top of message is shown.");
1993         break;
1994
1995       case OP_HALF_DOWN:
1996         if (lineInfo[curline].offset < sb.st_size-1)
1997         {
1998           topline = upNLines (bodylen/2, lineInfo, curline, hideQuoted);
1999         }
2000         else if (option (OPTPAGERSTOP))
2001         {
2002           /* emulate "less -q" and don't go on to the next message. */
2003           mutt_error _("Bottom of message is shown.");
2004         }
2005         else
2006         {
2007           /* end of the current message, so display the next message. */
2008           rc = OP_MAIN_NEXT_UNDELETED;
2009           ch = -1;
2010         }
2011         break;
2012
2013       case OP_SEARCH_NEXT:
2014       case OP_SEARCH_OPPOSITE:
2015         if (SearchCompiled)
2016         {
2017           wrapped = 0;
2018
2019           if (SearchContext > 0 && SearchContext < LINES - 2 - option (OPTHELP) ? 1 : 0)
2020             searchctx = SearchContext;
2021           else
2022             searchctx = 0;
2023
2024 search_next:
2025           if ((!SearchBack && ch==OP_SEARCH_NEXT) ||
2026               (SearchBack &&ch==OP_SEARCH_OPPOSITE))
2027           {
2028             /* searching forward */
2029             for (i = wrapped ? 0 : topline + searchctx + 1; i < lastLine; i++)
2030             {
2031               if ((!hideQuoted || lineInfo[i].type != MT_COLOR_QUOTED) && 
2032                     !lineInfo[i].continuation && lineInfo[i].search_cnt > 0)
2033                 break;
2034             }
2035
2036             if (i < lastLine)
2037               topline = i;
2038             else if (wrapped || !option (OPTWRAPSEARCH))
2039               mutt_error _("Not found.");
2040             else
2041             {
2042               mutt_message _("Search wrapped to top.");
2043               wrapped = 1;
2044               goto search_next;
2045             }
2046           }
2047           else
2048           {
2049             /* searching backward */
2050             for (i = wrapped ? lastLine : topline + searchctx - 1; i >= 0; i--)
2051             {
2052               if ((!hideQuoted || (has_types && 
2053                     lineInfo[i].type != MT_COLOR_QUOTED)) && 
2054                     !lineInfo[i].continuation && lineInfo[i].search_cnt > 0)
2055                 break;
2056             }
2057
2058             if (i >= 0)
2059               topline = i;
2060             else if (wrapped || !option (OPTWRAPSEARCH))
2061               mutt_error _("Not found.");
2062             else
2063             {
2064               mutt_message _("Search wrapped to bottom.");
2065               wrapped = 1;
2066               goto search_next;
2067             }
2068           }
2069
2070           if (lineInfo[topline].search_cnt > 0)
2071           {
2072             SearchFlag = M_SEARCH;
2073             /* give some context for search results */
2074             if (topline - searchctx > 0)
2075               topline -= searchctx;
2076           }
2077
2078           break;
2079         }
2080         /* no previous search pattern, so fall through to search */
2081
2082       case OP_SEARCH:
2083       case OP_SEARCH_REVERSE:
2084         strfcpy (buffer, searchbuf, sizeof (buffer));
2085         if (mutt_get_field ((ch == OP_SEARCH || ch == OP_SEARCH_NEXT) ?
2086                             _("Search for: ") : _("Reverse search for: "),
2087                             buffer, sizeof (buffer),
2088                             M_CLEAR) != 0)
2089           break;
2090
2091         if (!strcmp (buffer, searchbuf))
2092         {
2093           if (SearchCompiled)
2094           {
2095             /* do an implicit search-next */
2096             if (ch == OP_SEARCH)
2097               ch = OP_SEARCH_NEXT;
2098             else
2099               ch = OP_SEARCH_OPPOSITE;
2100
2101             wrapped = 0;
2102             goto search_next;
2103           }
2104         }
2105       
2106         if (!buffer[0])
2107           break;
2108       
2109         strfcpy (searchbuf, buffer, sizeof (searchbuf));
2110
2111         /* leave SearchBack alone if ch == OP_SEARCH_NEXT */
2112         if (ch == OP_SEARCH)
2113           SearchBack = 0;
2114         else if (ch == OP_SEARCH_REVERSE)
2115           SearchBack = 1;
2116
2117         if (SearchCompiled)
2118         {
2119           regfree (&SearchRE);
2120           for (i = 0; i < lastLine; i++)
2121           {
2122             if (lineInfo[i].search)
2123               FREE (&(lineInfo[i].search));
2124             lineInfo[i].search_cnt = -1;
2125           }
2126         }
2127
2128         if ((err = REGCOMP (&SearchRE, searchbuf, REG_NEWLINE | mutt_which_case (searchbuf))) != 0)
2129         {
2130           regerror (err, &SearchRE, buffer, sizeof (buffer));
2131           mutt_error ("%s", buffer);
2132           for (i = 0; i < maxLine ; i++)
2133           {
2134             /* cleanup */
2135             if (lineInfo[i].search)
2136               FREE (&(lineInfo[i].search));
2137             lineInfo[i].search_cnt = -1;
2138           }
2139           SearchFlag = 0;
2140           SearchCompiled = 0;
2141         }
2142         else
2143         {
2144           SearchCompiled = 1;
2145           /* update the search pointers */
2146           i = 0;
2147           while (display_line (fp, &last_pos, &lineInfo, i, &lastLine, 
2148                                 &maxLine, M_SEARCH | (flags & M_PAGER_NSKIP) | (flags & M_PAGER_NOWRAP),
2149                                 &QuoteList, &q_level,
2150                                 &force_redraw, &SearchRE) == 0)
2151             i++;
2152
2153           if (!SearchBack)
2154           {
2155             /* searching forward */
2156             for (i = topline; i < lastLine; i++)
2157             {
2158               if ((!hideQuoted || lineInfo[i].type != MT_COLOR_QUOTED) && 
2159                     !lineInfo[i].continuation && lineInfo[i].search_cnt > 0)
2160                 break;
2161             }
2162
2163             if (i < lastLine) topline = i;
2164           }
2165           else
2166           {
2167             /* searching backward */
2168             for (i = topline; i >= 0; i--)
2169             {
2170               if ((!hideQuoted || lineInfo[i].type != MT_COLOR_QUOTED) && 
2171                     !lineInfo[i].continuation && lineInfo[i].search_cnt > 0)
2172                 break;
2173             }
2174
2175             if (i >= 0) topline = i;
2176           }
2177
2178           if (lineInfo[topline].search_cnt == 0)
2179           {
2180             SearchFlag = 0;
2181             mutt_error _("Not found.");
2182           }
2183           else
2184           {
2185             SearchFlag = M_SEARCH;
2186             /* give some context for search results */
2187             if (SearchContext > 0 && SearchContext < LINES - 2 - option (OPTHELP) ? 1 : 0)
2188               searchctx = SearchContext;
2189             else
2190               searchctx = 0;
2191             if (topline - searchctx > 0)
2192               topline -= searchctx;
2193           }
2194
2195         }
2196         redraw = REDRAW_BODY;
2197         break;
2198
2199       case OP_SEARCH_TOGGLE:
2200         if (SearchCompiled)
2201         {
2202           SearchFlag ^= M_SEARCH;
2203           redraw = REDRAW_BODY;
2204         }
2205         break;
2206
2207       case OP_HELP:
2208         /* don't let the user enter the help-menu from the help screen! */
2209         if (! InHelp)
2210         {
2211           InHelp = 1;
2212           mutt_help (MENU_PAGER);
2213           redraw = REDRAW_FULL;
2214           InHelp = 0;
2215         }
2216         else
2217           mutt_error _("Help is currently being shown.");
2218         break;
2219
2220       case OP_PAGER_HIDE_QUOTED:
2221         if (has_types)
2222         {
2223           hideQuoted ^= M_HIDE;
2224           if (hideQuoted && lineInfo[topline].type == MT_COLOR_QUOTED)
2225             topline = upNLines (1, lineInfo, topline, hideQuoted);
2226           else
2227             redraw = REDRAW_BODY;
2228         }
2229         break;
2230
2231       case OP_PAGER_SKIP_QUOTED:
2232         if (has_types)
2233         {
2234           int dretval = 0;
2235           int new_topline = topline;
2236
2237           while ((new_topline < lastLine ||
2238                   (0 == (dretval = display_line (fp, &last_pos, &lineInfo,
2239                          new_topline, &lastLine, &maxLine, M_TYPES | (flags & M_PAGER_NOWRAP),
2240                          &QuoteList, &q_level, &force_redraw, &SearchRE))))
2241                  && lineInfo[new_topline].type != MT_COLOR_QUOTED)
2242             new_topline++;
2243
2244           if (dretval < 0)
2245           {
2246             mutt_error _("No more quoted text.");
2247             break;
2248           }
2249
2250           while ((new_topline < lastLine ||
2251                   (0 == (dretval = display_line (fp, &last_pos, &lineInfo,
2252                          new_topline, &lastLine, &maxLine, M_TYPES | (flags & M_PAGER_NOWRAP),
2253                          &QuoteList, &q_level, &force_redraw, &SearchRE))))
2254                  && lineInfo[new_topline].type == MT_COLOR_QUOTED)
2255             new_topline++;
2256
2257           if (dretval < 0)
2258           {
2259             mutt_error _("No more unquoted text after quoted text.");
2260             break;        
2261           }
2262           topline = new_topline;
2263         }
2264         break;
2265
2266       case OP_PAGER_BOTTOM: /* move to the end of the file */
2267         if (lineInfo[curline].offset < sb.st_size - 1)
2268         {
2269           i = curline;
2270           /* make sure the types are defined to the end of file */
2271           while (display_line (fp, &last_pos, &lineInfo, i, &lastLine, 
2272                                 &maxLine, has_types | (flags & M_PAGER_NOWRAP),
2273                                 &QuoteList, &q_level, &force_redraw,
2274                                 &SearchRE) == 0)
2275             i++;
2276           topline = upNLines (bodylen, lineInfo, lastLine, hideQuoted);
2277         }
2278         else
2279           mutt_error _("Bottom of message is shown.");
2280         break;
2281
2282       case OP_REDRAW:
2283         clearok (stdscr, TRUE);
2284         redraw = REDRAW_FULL;
2285         break;
2286
2287       case OP_NULL:
2288         km_error_key (MENU_PAGER);
2289         break;
2290
2291         /* --------------------------------------------------------------------
2292          * The following are operations on the current message rather than
2293          * adjusting the view of the message.
2294          */
2295
2296       case OP_BOUNCE_MESSAGE:
2297         CHECK_MODE(IsHeader (extra) || IsMsgAttach (extra))
2298         CHECK_ATTACH;
2299         if (IsMsgAttach (extra))
2300           mutt_attach_bounce (extra->fp, extra->hdr,
2301                               extra->idx, extra->idxlen,
2302                               extra->bdy);
2303         else
2304           ci_bounce_message (extra->hdr, &redraw);
2305         break;
2306
2307       case OP_RESEND:
2308         CHECK_MODE(IsHeader (extra) || IsMsgAttach (extra))
2309         CHECK_ATTACH;
2310         if (IsMsgAttach (extra))
2311           mutt_attach_resend (extra->fp, extra->hdr,
2312                               extra->idx, extra->idxlen,
2313                               extra->bdy);
2314         else
2315           mutt_resend_message (NULL, extra->ctx, extra->hdr);
2316         redraw = REDRAW_FULL;
2317         break;
2318
2319       case OP_CHECK_TRADITIONAL:
2320         CHECK_MODE (IsHeader (extra));
2321         if (!(WithCrypto & APPLICATION_PGP))
2322           break;
2323         if (!(extra->hdr->security & PGP_TRADITIONAL_CHECKED)) 
2324         {
2325           ch = -1;
2326           rc = OP_CHECK_TRADITIONAL;
2327         }
2328         break;
2329       
2330       case OP_CREATE_ALIAS:
2331         CHECK_MODE(IsHeader (extra) || IsMsgAttach (extra));
2332         if (IsMsgAttach (extra))
2333           mutt_create_alias (extra->bdy->hdr->env, NULL);
2334         else
2335           mutt_create_alias (extra->hdr->env, NULL);
2336         MAYBE_REDRAW (redraw);
2337         break;
2338
2339       case OP_DELETE:
2340         CHECK_MODE(IsHeader (extra));
2341         CHECK_READONLY;
2342         CHECK_ACL(M_ACL_DELETE, _("delete message"));
2343
2344         mutt_set_flag (Context, extra->hdr, M_DELETE, 1);
2345         if (option (OPTDELETEUNTAG))
2346           mutt_set_flag (Context, extra->hdr, M_TAG, 0);
2347         redraw = REDRAW_STATUS | REDRAW_INDEX;
2348         if (option (OPTRESOLVE))
2349         {
2350           ch = -1;
2351           rc = OP_MAIN_NEXT_UNDELETED;
2352         }
2353         break;
2354
2355       case OP_MAIN_SET_FLAG:
2356       case OP_MAIN_CLEAR_FLAG:
2357         CHECK_MODE(IsHeader (extra));
2358         CHECK_READONLY;
2359
2360         if (mutt_change_flag (extra->hdr, (ch == OP_MAIN_SET_FLAG)) == 0)
2361           redraw |= REDRAW_STATUS | REDRAW_INDEX;
2362         if (extra->hdr->deleted && option (OPTRESOLVE))
2363         {
2364           ch = -1;
2365           rc = OP_MAIN_NEXT_UNDELETED;
2366         }
2367         break;
2368
2369       case OP_DELETE_THREAD:
2370       case OP_DELETE_SUBTHREAD:
2371         CHECK_MODE(IsHeader (extra));
2372         CHECK_READONLY;
2373         CHECK_ACL(M_ACL_DELETE, _("delete message(s)"));
2374
2375         r = mutt_thread_set_flag (extra->hdr, M_DELETE, 1,
2376                                   ch == OP_DELETE_THREAD ? 0 : 1);
2377
2378         if (r != -1)
2379         {
2380           if (option (OPTDELETEUNTAG))
2381             mutt_thread_set_flag (extra->hdr, M_TAG, 0,
2382                                   ch == OP_DELETE_THREAD ? 0 : 1);
2383           if (option (OPTRESOLVE))
2384           {
2385             rc = OP_MAIN_NEXT_UNDELETED;
2386             ch = -1;
2387           }
2388
2389           if (!option (OPTRESOLVE) && PagerIndexLines)
2390             redraw = REDRAW_FULL;
2391           else
2392             redraw = REDRAW_STATUS | REDRAW_INDEX;
2393         }
2394         break;
2395
2396       case OP_DISPLAY_ADDRESS:
2397         CHECK_MODE(IsHeader (extra) || IsMsgAttach (extra));
2398         if (IsMsgAttach (extra))
2399           mutt_display_address (extra->bdy->hdr->env);
2400         else
2401           mutt_display_address (extra->hdr->env);
2402         break;
2403
2404       case OP_ENTER_COMMAND:
2405         old_smart_wrap = option (OPTWRAP);
2406         old_markers = option (OPTMARKERS);
2407         old_PagerIndexLines = PagerIndexLines;
2408
2409         CurrentMenu = MENU_PAGER;
2410         mutt_enter_command ();
2411
2412         if (option (OPTNEEDRESORT))
2413         {
2414           unset_option (OPTNEEDRESORT);
2415           CHECK_MODE(IsHeader (extra));
2416           set_option (OPTNEEDRESORT);
2417         }
2418
2419         if (old_PagerIndexLines != PagerIndexLines)
2420         {
2421           if (index)
2422             mutt_menuDestroy (&index);
2423           index = NULL;
2424         }
2425         
2426         if (option (OPTWRAP) != old_smart_wrap || 
2427             option (OPTMARKERS) != old_markers)
2428         {
2429           if (flags & M_PAGER_RETWINCH)
2430           {
2431             ch = -1;
2432             rc = OP_REFORMAT_WINCH;
2433             continue;
2434           }
2435
2436           /* count the real lines above */
2437           j = 0;
2438           for (i = 0; i <= topline; i++)
2439           {
2440             if (!lineInfo[i].continuation)
2441               j++;
2442           }
2443
2444           /* we need to restart the whole thing */
2445           for (i = 0; i < maxLine; i++)
2446           {
2447             lineInfo[i].offset = 0;
2448             lineInfo[i].type = -1;
2449             lineInfo[i].continuation = 0;
2450             lineInfo[i].chunks = 0;
2451             lineInfo[i].search_cnt = -1;
2452             lineInfo[i].quote = NULL;
2453
2454             safe_realloc (&(lineInfo[i].syntax), sizeof (struct syntax_t));
2455             if (SearchCompiled && lineInfo[i].search)
2456                 FREE (&(lineInfo[i].search));
2457           }
2458
2459           if (SearchCompiled)
2460           {
2461             regfree (&SearchRE);
2462             SearchCompiled = 0;
2463           }
2464           SearchFlag = 0;
2465
2466           /* try to keep the old position */
2467           topline = 0;
2468           lastLine = 0;
2469           while (j > 0 && display_line (fp, &last_pos, &lineInfo, topline, 
2470                                         &lastLine, &maxLine,
2471                                         (has_types ? M_TYPES : 0) | (flags & M_PAGER_NOWRAP),
2472                                         &QuoteList, &q_level, &force_redraw,
2473                                         &SearchRE) == 0)
2474           {
2475             if (! lineInfo[topline].continuation)
2476               j--;
2477             if (j > 0)
2478               topline++;
2479           }
2480
2481           ch = 0;
2482         }
2483
2484         if (option (OPTFORCEREDRAWPAGER))
2485           redraw = REDRAW_FULL;
2486         unset_option (OPTFORCEREDRAWINDEX);
2487         unset_option (OPTFORCEREDRAWPAGER);
2488         break;
2489
2490       case OP_FLAG_MESSAGE:
2491         CHECK_MODE(IsHeader (extra));
2492         CHECK_READONLY;
2493         CHECK_ACL(M_ACL_WRITE, "flag message");
2494
2495         mutt_set_flag (Context, extra->hdr, M_FLAG, !extra->hdr->flagged);
2496         redraw = REDRAW_STATUS | REDRAW_INDEX;
2497         if (option (OPTRESOLVE))
2498         {
2499           ch = -1;
2500           rc = OP_MAIN_NEXT_UNDELETED;
2501         }
2502         break;
2503
2504       case OP_PIPE:
2505         CHECK_MODE(IsHeader (extra) || IsAttach (extra));
2506         if (IsAttach (extra))
2507           mutt_pipe_attachment_list (extra->fp, 0, extra->bdy, 0);
2508         else
2509           mutt_pipe_message (extra->hdr);
2510         MAYBE_REDRAW (redraw);
2511         break;
2512
2513       case OP_PRINT:
2514         CHECK_MODE(IsHeader (extra) || IsAttach (extra));
2515         if (IsAttach (extra))
2516           mutt_print_attachment_list (extra->fp, 0, extra->bdy);
2517         else
2518           mutt_print_message (extra->hdr);
2519         break;
2520
2521       case OP_MAIL:
2522         CHECK_MODE(IsHeader (extra) && !IsAttach (extra));
2523         CHECK_ATTACH;      
2524         ci_send_message (0, NULL, NULL, extra->ctx, NULL);
2525         redraw = REDRAW_FULL;
2526         break;
2527
2528       case OP_REPLY:
2529         CHECK_MODE(IsHeader (extra) || IsMsgAttach (extra));
2530         CHECK_ATTACH;      
2531         if (IsMsgAttach (extra)) 
2532           mutt_attach_reply (extra->fp, extra->hdr, extra->idx,
2533                              extra->idxlen, extra->bdy,
2534                              SENDREPLY);
2535         else
2536           ci_send_message (SENDREPLY, NULL, NULL, extra->ctx, extra->hdr);
2537         redraw = REDRAW_FULL;
2538         break;
2539
2540       case OP_RECALL_MESSAGE:
2541         CHECK_MODE(IsHeader (extra) && !IsAttach(extra));
2542         CHECK_ATTACH;
2543         ci_send_message (SENDPOSTPONED, NULL, NULL, extra->ctx, extra->hdr);
2544         redraw = REDRAW_FULL;
2545         break;
2546
2547       case OP_GROUP_REPLY:
2548         CHECK_MODE(IsHeader (extra) || IsMsgAttach (extra));
2549         CHECK_ATTACH;
2550         if (IsMsgAttach (extra))
2551           mutt_attach_reply (extra->fp, extra->hdr, extra->idx,
2552                              extra->idxlen, extra->bdy, SENDREPLY|SENDGROUPREPLY);
2553         else
2554           ci_send_message (SENDREPLY | SENDGROUPREPLY, NULL, NULL, extra->ctx, extra->hdr);
2555         redraw = REDRAW_FULL;
2556         break;
2557
2558       case OP_LIST_REPLY:
2559         CHECK_MODE(IsHeader (extra) || IsMsgAttach (extra));
2560         CHECK_ATTACH;        
2561         if (IsMsgAttach (extra))
2562           mutt_attach_reply (extra->fp, extra->hdr, extra->idx,
2563                              extra->idxlen, extra->bdy, SENDREPLY|SENDLISTREPLY);
2564         else
2565           ci_send_message (SENDREPLY | SENDLISTREPLY, NULL, NULL, extra->ctx, extra->hdr);
2566         redraw = REDRAW_FULL;
2567         break;
2568
2569       case OP_FORWARD_MESSAGE:
2570         CHECK_MODE(IsHeader (extra) || IsMsgAttach (extra));
2571         CHECK_ATTACH;
2572         if (IsMsgAttach (extra))
2573           mutt_attach_forward (extra->fp, extra->hdr, extra->idx,
2574                                extra->idxlen, extra->bdy);
2575         else
2576           ci_send_message (SENDFORWARD, NULL, NULL, extra->ctx, extra->hdr);
2577         redraw = REDRAW_FULL;
2578         break;
2579
2580       case OP_DECRYPT_SAVE:
2581         if (!WithCrypto)
2582         {
2583           ch = -1;
2584           break;
2585         }
2586         /* fall through */
2587       case OP_SAVE:
2588         if (IsAttach (extra))
2589         {
2590           mutt_save_attachment_list (extra->fp, 0, extra->bdy, extra->hdr, NULL);
2591           break;
2592         }
2593         /* fall through */
2594       case OP_COPY_MESSAGE:
2595       case OP_DECODE_SAVE:
2596       case OP_DECODE_COPY:
2597       case OP_DECRYPT_COPY:
2598         if (!WithCrypto && ch == OP_DECRYPT_COPY)
2599         {
2600           ch = -1;
2601           break;
2602         }
2603         CHECK_MODE(IsHeader (extra));
2604         if (mutt_save_message (extra->hdr,
2605                                (ch == OP_DECRYPT_SAVE) ||
2606                                (ch == OP_SAVE) || (ch == OP_DECODE_SAVE),
2607                                (ch == OP_DECODE_SAVE) || (ch == OP_DECODE_COPY),
2608                                (ch == OP_DECRYPT_SAVE) || (ch == OP_DECRYPT_COPY) ||
2609                                0,
2610                                &redraw) == 0 && (ch == OP_SAVE || ch == OP_DECODE_SAVE
2611                                                  || ch == OP_DECRYPT_SAVE
2612                                                  ))
2613         {
2614           if (option (OPTRESOLVE))
2615           {
2616             ch = -1;
2617             rc = OP_MAIN_NEXT_UNDELETED;
2618           }
2619           else
2620             redraw |= REDRAW_STATUS | REDRAW_INDEX;
2621         }
2622         MAYBE_REDRAW (redraw);
2623         break;
2624
2625       case OP_SHELL_ESCAPE:
2626         mutt_shell_escape ();
2627         MAYBE_REDRAW (redraw);
2628         break;
2629
2630       case OP_TAG:
2631         CHECK_MODE(IsHeader (extra));
2632         mutt_set_flag (Context, extra->hdr, M_TAG, !extra->hdr->tagged);
2633
2634         Context->last_tag = extra->hdr->tagged ? extra->hdr :
2635           ((Context->last_tag == extra->hdr && !extra->hdr->tagged)
2636            ? NULL : Context->last_tag);
2637
2638         redraw = REDRAW_STATUS | REDRAW_INDEX;
2639         if (option (OPTRESOLVE))
2640         {
2641           ch = -1;
2642           rc = OP_NEXT_ENTRY;
2643         }
2644         break;
2645
2646       case OP_TOGGLE_NEW:
2647         CHECK_MODE(IsHeader (extra));
2648         CHECK_READONLY;
2649         CHECK_ACL(M_ACL_SEEN, _("toggle new"));
2650
2651         if (extra->hdr->read || extra->hdr->old)
2652           mutt_set_flag (Context, extra->hdr, M_NEW, 1);
2653         else if (!first)
2654           mutt_set_flag (Context, extra->hdr, M_READ, 1);
2655         first = 0;
2656         Context->msgnotreadyet = -1;
2657         redraw = REDRAW_STATUS | REDRAW_INDEX;
2658         if (option (OPTRESOLVE))
2659         {
2660           ch = -1;
2661           rc = OP_MAIN_NEXT_UNDELETED;
2662         }
2663         break;
2664
2665       case OP_UNDELETE:
2666         CHECK_MODE(IsHeader (extra));
2667         CHECK_READONLY;
2668         CHECK_ACL(M_ACL_DELETE, _("undelete message"));
2669
2670         mutt_set_flag (Context, extra->hdr, M_DELETE, 0);
2671         redraw = REDRAW_STATUS | REDRAW_INDEX;
2672         if (option (OPTRESOLVE))
2673         {
2674           ch = -1;
2675           rc = OP_NEXT_ENTRY;
2676         }
2677         break;
2678
2679       case OP_UNDELETE_THREAD:
2680       case OP_UNDELETE_SUBTHREAD:
2681         CHECK_MODE(IsHeader (extra));
2682         CHECK_READONLY;
2683         CHECK_ACL(M_ACL_DELETE, _("undelete message(s)"));
2684
2685         r = mutt_thread_set_flag (extra->hdr, M_DELETE, 0,
2686                                   ch == OP_UNDELETE_THREAD ? 0 : 1);
2687
2688         if (r != -1)
2689         {
2690           if (option (OPTRESOLVE))
2691           {
2692             rc = (ch == OP_DELETE_THREAD) ?
2693                                   OP_MAIN_NEXT_THREAD : OP_MAIN_NEXT_SUBTHREAD;
2694             ch = -1;
2695           }
2696
2697           if (!option (OPTRESOLVE) && PagerIndexLines)
2698             redraw = REDRAW_FULL;
2699           else
2700             redraw = REDRAW_STATUS | REDRAW_INDEX;
2701         }
2702         break;
2703
2704       case OP_VERSION:
2705         mutt_version ();
2706         break;
2707
2708       case OP_BUFFY_LIST:
2709         mutt_buffy_list ();
2710         break;
2711
2712       case OP_VIEW_ATTACHMENTS:
2713         if (flags & M_PAGER_ATTACHMENT)
2714         {
2715           ch = -1;
2716           rc = OP_ATTACH_COLLAPSE;
2717           break;
2718         }
2719         CHECK_MODE(IsHeader (extra));
2720         mutt_view_attachments (extra->hdr);
2721         if (extra->hdr->attach_del)
2722           Context->changed = 1;
2723         redraw = REDRAW_FULL;
2724         break;
2725
2726
2727       case OP_MAIL_KEY:
2728         if (!(WithCrypto & APPLICATION_PGP))
2729         {
2730           ch = -1;
2731           break;
2732         }
2733         CHECK_MODE(IsHeader(extra));
2734         CHECK_ATTACH;
2735         ci_send_message (SENDKEY, NULL, NULL, extra->ctx, extra->hdr);
2736         redraw = REDRAW_FULL;
2737         break;
2738
2739
2740       case OP_FORGET_PASSPHRASE:
2741         crypt_forget_passphrase ();
2742         break;
2743
2744       case OP_EXTRACT_KEYS:
2745         if (!WithCrypto)
2746         {
2747           ch = -1;
2748           break;
2749         }
2750         CHECK_MODE(IsHeader(extra));
2751         crypt_extract_keys_from_messages(extra->hdr);
2752         redraw = REDRAW_FULL;
2753         break;
2754
2755       case OP_WHAT_KEY:
2756         mutt_what_key ();
2757         break;
2758
2759       default:
2760         ch = -1;
2761         break;
2762     }
2763   }
2764
2765   safe_fclose (&fp);
2766   if (IsHeader (extra))
2767   {
2768     Context->msgnotreadyet = -1;
2769     if (rc == -1)
2770       OldHdr = NULL;
2771     else
2772     {
2773       TopLine = topline;
2774       OldHdr = extra->hdr;
2775     }
2776   }
2777     
2778   cleanup_quote (&QuoteList);
2779   
2780   for (i = 0; i < maxLine ; i++)
2781   {
2782     FREE (&(lineInfo[i].syntax));
2783     if (SearchCompiled && lineInfo[i].search)
2784       FREE (&(lineInfo[i].search));
2785   }
2786   if (SearchCompiled)
2787   {
2788     regfree (&SearchRE);
2789     SearchCompiled = 0;
2790   }
2791   FREE (&lineInfo);
2792   if (index)
2793     mutt_menuDestroy(&index);
2794   return (rc != -1 ? rc : 0);
2795 }