]> ncurses.scripts.mit.edu Git - ncurses.git/blob - ncurses/tinfo/comp_parse.c
ncurses 6.3 - patch 20221015
[ncurses.git] / ncurses / tinfo / comp_parse.c
1 /****************************************************************************
2  * Copyright 2018-2021,2022 Thomas E. Dickey                                *
3  * Copyright 1998-2016,2017 Free Software Foundation, Inc.                  *
4  *                                                                          *
5  * Permission is hereby granted, free of charge, to any person obtaining a  *
6  * copy of this software and associated documentation files (the            *
7  * "Software"), to deal in the Software without restriction, including      *
8  * without limitation the rights to use, copy, modify, merge, publish,      *
9  * distribute, distribute with modifications, sublicense, and/or sell       *
10  * copies of the Software, and to permit persons to whom the Software is    *
11  * furnished to do so, subject to the following conditions:                 *
12  *                                                                          *
13  * The above copyright notice and this permission notice shall be included  *
14  * in all copies or substantial portions of the Software.                   *
15  *                                                                          *
16  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS  *
17  * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF               *
18  * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.   *
19  * IN NO EVENT SHALL THE ABOVE COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,   *
20  * DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR    *
21  * OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR    *
22  * THE USE OR OTHER DEALINGS IN THE SOFTWARE.                               *
23  *                                                                          *
24  * Except as contained in this notice, the name(s) of the above copyright   *
25  * holders shall not be used in advertising or otherwise to promote the     *
26  * sale, use or other dealings in this Software without prior written       *
27  * authorization.                                                           *
28  ****************************************************************************/
29
30 /****************************************************************************
31  *  Author: Zeyd M. Ben-Halim <zmbenhal@netcom.com> 1992,1995               *
32  *     and: Eric S. Raymond <esr@snark.thyrsus.com>                         *
33  *     and: Thomas E. Dickey                        1996-on                 *
34  ****************************************************************************/
35
36 /*
37  *      comp_parse.c -- parser driver loop and use handling.
38  *
39  *      Use this code by calling _nc_read_entry_source() on as many source
40  *      files as you like (either terminfo or termcap syntax).  If you
41  *      want use-resolution, call _nc_resolve_uses2().  To free the list
42  *      storage, do _nc_free_entries().
43  */
44
45 #include <curses.priv.h>
46
47 #include <ctype.h>
48
49 #include <tic.h>
50
51 MODULE_ID("$Id: comp_parse.c,v 1.128 2022/10/15 19:31:00 tom Exp $")
52
53 static void sanity_check2(TERMTYPE2 *, bool);
54 NCURSES_IMPEXP void (NCURSES_API *_nc_check_termtype2) (TERMTYPE2 *, bool) = sanity_check2;
55
56 static void fixup_acsc(TERMTYPE2 *, int);
57
58 static void
59 enqueue(ENTRY * ep)
60 /* add an entry to the in-core list */
61 {
62     ENTRY *newp;
63
64     DEBUG(2, (T_CALLED("enqueue(ep=%p)"), (void *) ep));
65
66     newp = _nc_copy_entry(ep);
67     if (newp == 0)
68         _nc_err_abort(MSG_NO_MEMORY);
69
70     newp->last = _nc_tail;
71     _nc_tail = newp;
72
73     newp->next = 0;
74     if (newp->last)
75         newp->last->next = newp;
76     DEBUG(2, (T_RETURN("")));
77 }
78
79 #define NAMEBUFFER_SIZE (MAX_NAME_SIZE + 2)
80
81 static char *
82 force_bar(char *dst, char *src)
83 {
84     if (strchr(src, '|') == 0) {
85         size_t len = strlen(src);
86         if (len > MAX_NAME_SIZE)
87             len = MAX_NAME_SIZE;
88         _nc_STRNCPY(dst, src, MAX_NAME_SIZE);
89         _nc_STRCPY(dst + len, "|", NAMEBUFFER_SIZE - len);
90         src = dst;
91     }
92     return src;
93 }
94 #define ForceBar(dst, src) ((strchr(src, '|') == 0) ? force_bar(dst, src) : src)
95
96 #if NCURSES_USE_TERMCAP && NCURSES_XNAMES
97 static char *
98 skip_index(char *name)
99 {
100     char *bar = strchr(name, '|');
101
102     if (bar != 0 && (bar - name) == 2)
103         name = bar + 1;
104
105     return name;
106 }
107 #endif
108
109 static bool
110 check_collisions(char *n1, char *n2, int counter)
111 {
112     char *pstart, *qstart, *pend, *qend;
113     char nc1[NAMEBUFFER_SIZE];
114     char nc2[NAMEBUFFER_SIZE];
115
116     n1 = ForceBar(nc1, n1);
117     n2 = ForceBar(nc2, n2);
118
119 #if NCURSES_USE_TERMCAP && NCURSES_XNAMES
120     if ((_nc_syntax == SYN_TERMCAP) && _nc_user_definable) {
121         n1 = skip_index(n1);
122         n2 = skip_index(n2);
123     }
124 #endif
125
126     for (pstart = n1; (pend = strchr(pstart, '|')); pstart = pend + 1) {
127         for (qstart = n2; (qend = strchr(qstart, '|')); qstart = qend + 1) {
128             if ((pend - pstart == qend - qstart)
129                 && memcmp(pstart, qstart, (size_t) (pend - pstart)) == 0) {
130                 if (counter > 0)
131                     (void) fprintf(stderr, "Name collision '%.*s' between\n",
132                                    (int) (pend - pstart), pstart);
133                 return (TRUE);
134             }
135         }
136     }
137
138     return (FALSE);
139 }
140
141 static char *
142 next_name(char *name)
143 {
144     if (*name != '\0')
145         ++name;
146     return name;
147 }
148
149 static char *
150 name_ending(char *name)
151 {
152     if (*name == '\0') {
153         name = 0;
154     } else {
155         while (*name != '\0' && *name != '|')
156             ++name;
157     }
158     return name;
159 }
160
161 /*
162  * Essentially, find the conflict reported in check_collisions() and remove
163  * it from the second name, unless that happens to be the last alias.
164  */
165 static bool
166 remove_collision(char *n1, char *n2)
167 {
168     char *p2 = n2;
169     char *pstart, *qstart, *pend, *qend;
170     bool removed = FALSE;
171
172 #if NCURSES_USE_TERMCAP && NCURSES_XNAMES
173     if ((_nc_syntax == SYN_TERMCAP) && _nc_user_definable) {
174         n1 = skip_index(n1);
175         p2 = n2 = skip_index(n2);
176     }
177 #endif
178
179     for (pstart = n1; (pend = name_ending(pstart)); pstart = next_name(pend)) {
180         for (qstart = n2; (qend = name_ending(qstart)); qstart = next_name(qend)) {
181             if ((pend - pstart == qend - qstart)
182                 && memcmp(pstart, qstart, (size_t) (pend - pstart)) == 0) {
183                 if (qstart != p2 || *qend == '|') {
184                     if (*qend == '|')
185                         ++qend;
186                     while ((*qstart++ = *qend++) != '\0') ;
187                     fprintf(stderr, "...now\t%s\n", p2);
188                     removed = TRUE;
189                 } else {
190                     fprintf(stderr, "Cannot remove alias '%.*s'\n",
191                             (int) (qend - qstart), qstart);
192                 }
193                 break;
194             }
195         }
196     }
197
198     return removed;
199 }
200
201 /* do any of the aliases in a pair of terminal names match? */
202 NCURSES_EXPORT(bool)
203 _nc_entry_match(char *n1, char *n2)
204 {
205     return check_collisions(n1, n2, 0);
206 }
207
208 /****************************************************************************
209  *
210  * Entry compiler and resolution logic
211  *
212  ****************************************************************************/
213
214 NCURSES_EXPORT(void)
215 _nc_read_entry_source(FILE *fp, char *buf,
216                       int literal, bool silent,
217                       bool(*hook) (ENTRY *))
218 /* slurp all entries in the given file into core */
219 {
220     ENTRY thisentry;
221     bool oldsuppress = _nc_suppress_warnings;
222     int immediate = 0;
223
224     DEBUG(2,
225           (T_CALLED("_nc_read_entry_source(file=%p, buf=%p, literal=%d, silent=%d, hook=%p)"),
226            (void *) fp, buf, literal, silent, (void *) hook));
227
228     if (silent)
229         _nc_suppress_warnings = TRUE;   /* shut the lexer up, too */
230
231     _nc_reset_input(fp, buf);
232     for (;;) {
233         memset(&thisentry, 0, sizeof(thisentry));
234         if (_nc_parse_entry(&thisentry, literal, silent) == ERR)
235             break;
236         if (!isalnum(UChar(thisentry.tterm.term_names[0])))
237             _nc_err_abort("terminal names must start with letter or digit");
238
239         /*
240          * This can be used for immediate compilation of entries with no "use="
241          * references to disk.  That avoids consuming a lot of memory when the
242          * resolution code could fetch entries off disk.
243          */
244         if (hook != NULLHOOK && (*hook) (&thisentry)) {
245             immediate++;
246         } else {
247             enqueue(&thisentry);
248             /*
249              * The enqueued entry is copied with _nc_copy_termtype(), so we can
250              * free some of the data from thisentry, i.e., the arrays.
251              */
252             FreeIfNeeded(thisentry.tterm.Booleans);
253             FreeIfNeeded(thisentry.tterm.Numbers);
254             FreeIfNeeded(thisentry.tterm.Strings);
255             FreeIfNeeded(thisentry.tterm.str_table);
256 #if NCURSES_XNAMES
257             FreeIfNeeded(thisentry.tterm.ext_Names);
258             FreeIfNeeded(thisentry.tterm.ext_str_table);
259 #endif
260         }
261     }
262
263     if (_nc_tail) {
264         /* set up the head pointer */
265         for (_nc_head = _nc_tail; _nc_head->last; _nc_head = _nc_head->last)
266             continue;
267
268         DEBUG(2, ("head = %s", _nc_head->tterm.term_names));
269         DEBUG(2, ("tail = %s", _nc_tail->tterm.term_names));
270     }
271 #ifdef TRACE
272     else if (!immediate)
273         DEBUG(2, ("no entries parsed"));
274 #endif
275
276     _nc_suppress_warnings = oldsuppress;
277     DEBUG(2, (T_RETURN("")));
278 }
279
280 #if 0 && NCURSES_XNAMES
281 static unsigned
282 find_capname(TERMTYPE2 *p, const char *name)
283 {
284     unsigned num_names = NUM_EXT_NAMES(p);
285     unsigned n;
286     if (name != 0) {
287         for (n = 0; n < num_names; ++n) {
288             if (!strcmp(p->ext_Names[n], name))
289                 break;
290         }
291     } else {
292         n = num_names + 1;
293     }
294     return n;
295 }
296
297 static int
298 extended_captype(TERMTYPE2 *p, unsigned which)
299 {
300     int result = UNDEF;
301     unsigned limit = 0;
302     limit += p->ext_Booleans;
303     if (limit != 0 && which < limit) {
304         result = BOOLEAN;
305     } else {
306         limit += p->ext_Numbers;
307         if (limit != 0 && which < limit) {
308             result = NUMBER;
309         } else {
310             limit += p->ext_Strings;
311             if (limit != 0 && which < limit) {
312                 result = ((p->Strings[STRCOUNT + which] != CANCELLED_STRING)
313                           ? STRING
314                           : CANCEL);
315             } else if (which >= limit) {
316                 result = CANCEL;
317             }
318         }
319     }
320     return result;
321 }
322
323 static const char *
324 name_of_captype(int which)
325 {
326     const char *result = "?";
327     switch (which) {
328     case BOOLEAN:
329         result = "boolean";
330         break;
331     case NUMBER:
332         result = "number";
333         break;
334     case STRING:
335         result = "string";
336         break;
337     }
338     return result;
339 }
340
341 #define valid_TERMTYPE2(p) \
342         ((p) != 0 && \
343          (p)->term_names != 0 && \
344          (p)->ext_Names != 0)
345
346 /*
347  * Disallow changing the type of an extended capability when doing a "use"
348  * if one or the other is a string.
349  */
350 static int
351 invalid_merge(TERMTYPE2 *to, TERMTYPE2 *from)
352 {
353     int rc = FALSE;
354     if (valid_TERMTYPE2(to)
355         && valid_TERMTYPE2(from)) {
356         char *to_name = _nc_first_name(to->term_names);
357         char *from_name = strdup(_nc_first_name(from->term_names));
358         unsigned num_names = NUM_EXT_NAMES(from);
359         unsigned n;
360
361         for (n = 0; n < num_names; ++n) {
362             const char *capname = from->ext_Names[n];
363             int tt = extended_captype(to, find_capname(to, capname));
364             int tf = extended_captype(from, n);
365
366             if (tt <= STRING
367                 && tf <= STRING
368                 && (tt == STRING) != (tf == STRING)) {
369                 if (from_name != 0 && strcmp(to_name, from_name)) {
370                     _nc_warning("merge of %s to %s changes type of %s from %s to %s",
371                                 from_name,
372                                 to_name,
373                                 from->ext_Names[n],
374                                 name_of_captype(tf),
375                                 name_of_captype(tt));
376                 } else {
377                     _nc_warning("merge of %s changes type of %s from %s to %s",
378                                 to_name,
379                                 from->ext_Names[n],
380                                 name_of_captype(tf),
381                                 name_of_captype(tt));
382                 }
383                 rc = TRUE;
384             }
385         }
386         free(from_name);
387     }
388     return rc;
389 }
390 #define validate_merge(p, q) \
391         if (invalid_merge(&((p)->tterm), &((q)->tterm))) \
392                 return FALSE
393 #else
394 #define validate_merge(p, q)    /* nothing */
395 #endif
396
397 NCURSES_EXPORT(int)
398 _nc_resolve_uses2(bool fullresolve, bool literal)
399 /* try to resolve all use capabilities */
400 {
401     ENTRY *qp, *rp, *lastread = 0;
402     bool keepgoing;
403     unsigned i, j;
404     int unresolved, total_unresolved, multiples;
405
406     DEBUG(2, (T_CALLED("_nc_resolve_uses2")));
407
408     /*
409      * Check for multiple occurrences of the same name.
410      */
411     multiples = 0;
412     for_entry_list(qp) {
413         int matchcount = 0;
414
415         for_entry_list2(rp, qp->next) {
416             if (qp > rp
417                 && check_collisions(qp->tterm.term_names,
418                                     rp->tterm.term_names,
419                                     matchcount + 1)) {
420                 if (!matchcount++) {
421                     (void) fprintf(stderr, "\t%s\n", rp->tterm.term_names);
422                 }
423                 (void) fprintf(stderr, "and\t%s\n", qp->tterm.term_names);
424                 if (!remove_collision(rp->tterm.term_names,
425                                       qp->tterm.term_names)) {
426                     ++multiples;
427                 }
428             }
429         }
430     }
431     if (multiples > 0) {
432         DEBUG(2, (T_RETURN("false")));
433         return (FALSE);
434     }
435
436     DEBUG(2, ("NO MULTIPLE NAME OCCURRENCES"));
437
438     /*
439      * First resolution stage: compute link pointers corresponding to names.
440      */
441     total_unresolved = 0;
442     _nc_curr_col = -1;
443     for_entry_list(qp) {
444         unresolved = 0;
445         for (i = 0; i < qp->nuses; i++) {
446             bool foundit;
447             char *child = _nc_first_name(qp->tterm.term_names);
448             char *lookfor = qp->uses[i].name;
449             long lookline = qp->uses[i].line;
450
451             if (lookfor == 0)
452                 continue;
453
454             foundit = FALSE;
455
456             _nc_set_type(child);
457
458             /* first, try to resolve from in-core records */
459             for_entry_list(rp) {
460                 if (rp != qp
461                     && _nc_name_match(rp->tterm.term_names, lookfor, "|")) {
462                     DEBUG(2, ("%s: resolving use=%s %p (in core)",
463                               child, lookfor, lookfor));
464
465                     qp->uses[i].link = rp;
466                     foundit = TRUE;
467
468                     /* verify that there are no earlier uses */
469                     for (j = 0; j < i; ++j) {
470                         if (qp->uses[j].link != NULL
471                             && !strcmp(qp->uses[j].link->tterm.term_names,
472                                        rp->tterm.term_names)) {
473                             _nc_warning("duplicate use=%s", lookfor);
474                             break;
475                         }
476                     }
477                 }
478             }
479
480             /* if that didn't work, try to merge in a compiled entry */
481             if (!foundit) {
482                 TERMTYPE2 thisterm;
483                 char filename[PATH_MAX];
484
485                 memset(&thisterm, 0, sizeof(thisterm));
486                 if (_nc_read_entry2(lookfor, filename, &thisterm) == 1) {
487                     DEBUG(2, ("%s: resolving use=%s (compiled)",
488                               child, lookfor));
489
490                     TYPE_MALLOC(ENTRY, 1, rp);
491                     rp->tterm = thisterm;
492                     rp->nuses = 0;
493                     rp->next = lastread;
494                     lastread = rp;
495
496                     qp->uses[i].link = rp;
497                     foundit = TRUE;
498
499                     /* verify that there are no earlier uses */
500                     for (j = 0; j < i; ++j) {
501                         if (qp->uses[j].link != NULL
502                             && !strcmp(qp->uses[j].link->tterm.term_names,
503                                        rp->tterm.term_names)) {
504                             _nc_warning("duplicate use=%s", lookfor);
505                             break;
506                         }
507                     }
508                 }
509             }
510
511             /* no good, mark this one unresolvable and complain */
512             if (!foundit) {
513                 unresolved++;
514                 total_unresolved++;
515
516                 _nc_curr_line = (int) lookline;
517                 _nc_warning("resolution of use=%s failed", lookfor);
518                 qp->uses[i].link = 0;
519             }
520         }
521     }
522     if (total_unresolved) {
523         /* free entries read in off disk */
524         _nc_free_entries(lastread);
525         DEBUG(2, (T_RETURN("false")));
526         return (FALSE);
527     }
528
529     DEBUG(2, ("NAME RESOLUTION COMPLETED OK"));
530
531     /*
532      * OK, at this point all (char *) references in `name' members
533      * have been successfully converted to (ENTRY *) pointers in
534      * `link' members.  Time to do the actual merges.
535      */
536     if (fullresolve) {
537         do {
538             ENTRY merged;
539
540             keepgoing = FALSE;
541
542             for_entry_list(qp) {
543                 if (qp->nuses > 0) {
544                     DEBUG(2, ("%s: attempting merge of %d entries",
545                               _nc_first_name(qp->tterm.term_names),
546                               qp->nuses));
547                     /*
548                      * If any of the use entries we're looking for is
549                      * incomplete, punt.  We'll catch this entry on a
550                      * subsequent pass.
551                      */
552                     for (i = 0; i < qp->nuses; i++) {
553                         if (qp->uses[i].link
554                             && qp->uses[i].link->nuses) {
555                             DEBUG(2, ("%s: use entry %d unresolved",
556                                       _nc_first_name(qp->tterm.term_names), i));
557                             goto incomplete;
558                         }
559                     }
560
561                     /*
562                      * First, make sure there is no garbage in the
563                      * merge block.  As a side effect, copy into
564                      * the merged entry the name field and string
565                      * table pointer.
566                      */
567                     _nc_copy_termtype2(&(merged.tterm), &(qp->tterm));
568
569                     /*
570                      * Now merge in each use entry in the proper
571                      * (reverse) order.
572                      */
573                     for (; qp->nuses; qp->nuses--) {
574                         int n = qp->nuses - 1;
575                         validate_merge(&merged, qp->uses[n].link);
576                         _nc_merge_entry(&merged, qp->uses[n].link);
577                         free(qp->uses[n].name);
578                     }
579
580                     /*
581                      * Now merge in the original entry.
582                      */
583                     validate_merge(&merged, qp);
584                     _nc_merge_entry(&merged, qp);
585
586                     /*
587                      * Replace the original entry with the merged one.
588                      */
589                     FreeIfNeeded(qp->tterm.Booleans);
590                     FreeIfNeeded(qp->tterm.Numbers);
591                     FreeIfNeeded(qp->tterm.Strings);
592                     FreeIfNeeded(qp->tterm.str_table);
593 #if NCURSES_XNAMES
594                     FreeIfNeeded(qp->tterm.ext_Names);
595                     FreeIfNeeded(qp->tterm.ext_str_table);
596 #endif
597                     qp->tterm = merged.tterm;
598                     _nc_wrap_entry(qp, TRUE);
599
600                     /*
601                      * We know every entry is resolvable because name resolution
602                      * didn't bomb.  So go back for another pass.
603                      */
604                     /* FALLTHRU */
605                   incomplete:
606                     keepgoing = TRUE;
607                 }
608             }
609         } while
610             (keepgoing);
611
612         DEBUG(2, ("MERGES COMPLETED OK"));
613     }
614
615     DEBUG(2, ("RESOLUTION FINISHED"));
616
617     if (fullresolve) {
618         _nc_curr_col = -1;
619         for_entry_list(qp) {
620             _nc_curr_line = (int) qp->startline;
621             _nc_set_type(_nc_first_name(qp->tterm.term_names));
622             /*
623              * tic overrides this function pointer to provide more verbose
624              * checking.
625              */
626             if (_nc_check_termtype2 != sanity_check2) {
627                 SCREEN *save_SP = SP;
628                 SCREEN fake_sp;
629                 TERMINAL fake_tm;
630                 TERMINAL *save_tm = cur_term;
631
632                 /*
633                  * Setup so that tic can use ordinary terminfo interface to
634                  * obtain capability information.
635                  */
636                 memset(&fake_sp, 0, sizeof(fake_sp));
637                 memset(&fake_tm, 0, sizeof(fake_tm));
638                 fake_sp._term = &fake_tm;
639                 TerminalType(&fake_tm) = qp->tterm;
640                 _nc_set_screen(&fake_sp);
641                 set_curterm(&fake_tm);
642
643                 _nc_check_termtype2(&qp->tterm, literal);
644
645                 /*
646                  * Checking calls tparm, which can allocate memory.  Fix leaks.
647                  */
648 #define TPS(name) fake_tm.tparm_state.name
649                 FreeAndNull(TPS(out_buff));
650                 FreeAndNull(TPS(fmt_buff));
651 #undef TPS
652
653                 _nc_set_screen(save_SP);
654                 set_curterm(save_tm);
655             } else {
656                 fixup_acsc(&qp->tterm, literal);
657             }
658         }
659         DEBUG(2, ("SANITY CHECK FINISHED"));
660     }
661
662     DEBUG(2, (T_RETURN("true")));
663     return (TRUE);
664 }
665
666 /*
667  * This bit of legerdemain turns all the terminfo variable names into
668  * references to locations in the arrays Booleans, Numbers, and Strings ---
669  * precisely what's needed.
670  */
671
672 #undef CUR
673 #define CUR tp->
674
675 static void
676 fixup_acsc(TERMTYPE2 *tp, int literal)
677 {
678     if (!literal) {
679         if (acs_chars == ABSENT_STRING
680             && PRESENT(enter_alt_charset_mode)
681             && PRESENT(exit_alt_charset_mode))
682             acs_chars = strdup(VT_ACSC);
683     }
684 }
685
686 static void
687 sanity_check2(TERMTYPE2 *tp, bool literal)
688 {
689     if (!PRESENT(exit_attribute_mode)) {
690 #ifdef __UNUSED__               /* this casts too wide a net */
691         bool terminal_entry = !strchr(tp->term_names, '+');
692         if (terminal_entry &&
693             (PRESENT(set_attributes)
694              || PRESENT(enter_standout_mode)
695              || PRESENT(enter_underline_mode)
696              || PRESENT(enter_blink_mode)
697              || PRESENT(enter_bold_mode)
698              || PRESENT(enter_dim_mode)
699              || PRESENT(enter_secure_mode)
700              || PRESENT(enter_protected_mode)
701              || PRESENT(enter_reverse_mode)))
702             _nc_warning("no exit_attribute_mode");
703 #endif /* __UNUSED__ */
704         PAIRED(enter_standout_mode, exit_standout_mode);
705         PAIRED(enter_underline_mode, exit_underline_mode);
706 #if defined(enter_italics_mode) && defined(exit_italics_mode)
707         PAIRED(enter_italics_mode, exit_italics_mode);
708 #endif
709     }
710
711     /* we do this check/fix in postprocess_termcap(), but some packagers
712      * prefer to bypass it...
713      */
714     if (!literal) {
715         fixup_acsc(tp, literal);
716         ANDMISSING(enter_alt_charset_mode, acs_chars);
717         ANDMISSING(exit_alt_charset_mode, acs_chars);
718     }
719
720     /* listed in structure-member order of first argument */
721     PAIRED(enter_alt_charset_mode, exit_alt_charset_mode);
722     ANDMISSING(enter_blink_mode, exit_attribute_mode);
723     ANDMISSING(enter_bold_mode, exit_attribute_mode);
724     PAIRED(exit_ca_mode, enter_ca_mode);
725     PAIRED(enter_delete_mode, exit_delete_mode);
726     ANDMISSING(enter_dim_mode, exit_attribute_mode);
727     PAIRED(enter_insert_mode, exit_insert_mode);
728     ANDMISSING(enter_secure_mode, exit_attribute_mode);
729     ANDMISSING(enter_protected_mode, exit_attribute_mode);
730     ANDMISSING(enter_reverse_mode, exit_attribute_mode);
731     PAIRED(from_status_line, to_status_line);
732     PAIRED(meta_off, meta_on);
733
734     PAIRED(prtr_on, prtr_off);
735     PAIRED(save_cursor, restore_cursor);
736     PAIRED(enter_xon_mode, exit_xon_mode);
737     PAIRED(enter_am_mode, exit_am_mode);
738     ANDMISSING(label_off, label_on);
739 #if defined(display_clock) && defined(remove_clock)
740     PAIRED(display_clock, remove_clock);
741 #endif
742     ANDMISSING(set_color_pair, initialize_pair);
743 }
744
745 #if NO_LEAKS
746 NCURSES_EXPORT(void)
747 _nc_leaks_tic(void)
748 {
749     T((T_CALLED("_nc_leaks_tic()")));
750     _nc_globals.leak_checking = TRUE;
751     _nc_alloc_entry_leaks();
752     _nc_captoinfo_leaks();
753     _nc_comp_scan_leaks();
754 #if BROKEN_LINKER || USE_REENTRANT
755     _nc_names_leaks();
756     _nc_codes_leaks();
757 #endif
758     _nc_tic_expand(0, FALSE, 0);
759     T((T_RETURN("")));
760 }
761
762 NCURSES_EXPORT(void)
763 _nc_free_tic(int code)
764 {
765     T((T_CALLED("_nc_free_tic(%d)"), code));
766     _nc_leaks_tic();
767     exit_terminfo(code);
768 }
769 #endif