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