]> ncurses.scripts.mit.edu Git - ncurses.git/blob - ncurses/tinfo/comp_parse.c
ncurses 6.3 - patch 20220903
[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.123 2022/09/03 20:02:45 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 #if NCURSES_XNAMES
256             FreeIfNeeded(thisentry.tterm.ext_Names);
257             FreeIfNeeded(thisentry.tterm.ext_str_table);
258 #endif
259         }
260     }
261
262     if (_nc_tail) {
263         /* set up the head pointer */
264         for (_nc_head = _nc_tail; _nc_head->last; _nc_head = _nc_head->last)
265             continue;
266
267         DEBUG(2, ("head = %s", _nc_head->tterm.term_names));
268         DEBUG(2, ("tail = %s", _nc_tail->tterm.term_names));
269     }
270 #ifdef TRACE
271     else if (!immediate)
272         DEBUG(2, ("no entries parsed"));
273 #endif
274
275     _nc_suppress_warnings = oldsuppress;
276     DEBUG(2, (T_RETURN("")));
277 }
278
279 #if 0 && NCURSES_XNAMES
280 static unsigned
281 find_capname(TERMTYPE2 *p, const char *name)
282 {
283     unsigned num_names = NUM_EXT_NAMES(p);
284     unsigned n;
285     if (name != 0) {
286         for (n = 0; n < num_names; ++n) {
287             if (!strcmp(p->ext_Names[n], name))
288                 break;
289         }
290     } else {
291         n = num_names + 1;
292     }
293     return n;
294 }
295
296 static int
297 extended_captype(TERMTYPE2 *p, unsigned which)
298 {
299     int result = UNDEF;
300     unsigned limit = 0;
301     limit += p->ext_Booleans;
302     if (limit != 0 && which < limit) {
303         result = BOOLEAN;
304     } else {
305         limit += p->ext_Numbers;
306         if (limit != 0 && which < limit) {
307             result = NUMBER;
308         } else {
309             limit += p->ext_Strings;
310             if (limit != 0 && which < limit) {
311                 result = ((p->Strings[STRCOUNT + which] != CANCELLED_STRING)
312                           ? STRING
313                           : CANCEL);
314             } else if (which >= limit) {
315                 result = CANCEL;
316             }
317         }
318     }
319     return result;
320 }
321
322 static const char *
323 name_of_captype(int which)
324 {
325     const char *result = "?";
326     switch (which) {
327     case BOOLEAN:
328         result = "boolean";
329         break;
330     case NUMBER:
331         result = "number";
332         break;
333     case STRING:
334         result = "string";
335         break;
336     }
337     return result;
338 }
339
340 #define valid_TERMTYPE2(p) \
341         ((p) != 0 && \
342          (p)->term_names != 0 && \
343          (p)->ext_Names != 0)
344
345 /*
346  * Disallow changing the type of an extended capability when doing a "use"
347  * if one or the other is a string.
348  */
349 static int
350 invalid_merge(TERMTYPE2 *to, TERMTYPE2 *from)
351 {
352     int rc = FALSE;
353     if (valid_TERMTYPE2(to)
354         && valid_TERMTYPE2(from)) {
355         char *to_name = _nc_first_name(to->term_names);
356         char *from_name = strdup(_nc_first_name(from->term_names));
357         unsigned num_names = NUM_EXT_NAMES(from);
358         unsigned n;
359
360         for (n = 0; n < num_names; ++n) {
361             const char *capname = from->ext_Names[n];
362             int tt = extended_captype(to, find_capname(to, capname));
363             int tf = extended_captype(from, n);
364
365             if (tt <= STRING
366                 && tf <= STRING
367                 && (tt == STRING) != (tf == STRING)) {
368                 if (from_name != 0 && strcmp(to_name, from_name)) {
369                     _nc_warning("merge of %s to %s changes type of %s from %s to %s",
370                                 from_name,
371                                 to_name,
372                                 from->ext_Names[n],
373                                 name_of_captype(tf),
374                                 name_of_captype(tt));
375                 } else {
376                     _nc_warning("merge of %s changes type of %s from %s to %s",
377                                 to_name,
378                                 from->ext_Names[n],
379                                 name_of_captype(tf),
380                                 name_of_captype(tt));
381                 }
382                 rc = TRUE;
383             }
384         }
385         free(from_name);
386     }
387     return rc;
388 }
389 #define validate_merge(p, q) \
390         if (invalid_merge(&((p)->tterm), &((q)->tterm))) \
391                 return FALSE
392 #else
393 #define validate_merge(p, q)    /* nothing */
394 #endif
395
396 NCURSES_EXPORT(int)
397 _nc_resolve_uses2(bool fullresolve, bool literal)
398 /* try to resolve all use capabilities */
399 {
400     ENTRY *qp, *rp, *lastread = 0;
401     bool keepgoing;
402     unsigned i, j;
403     int unresolved, total_unresolved, multiples;
404
405     DEBUG(2, (T_CALLED("_nc_resolve_uses2")));
406
407     /*
408      * Check for multiple occurrences of the same name.
409      */
410     multiples = 0;
411     for_entry_list(qp) {
412         int matchcount = 0;
413
414         for_entry_list(rp) {
415             if (qp > rp
416                 && check_collisions(qp->tterm.term_names,
417                                     rp->tterm.term_names,
418                                     matchcount + 1)) {
419                 if (!matchcount++) {
420                     (void) fprintf(stderr, "\t%s\n", rp->tterm.term_names);
421                 }
422                 (void) fprintf(stderr, "and\t%s\n", qp->tterm.term_names);
423                 if (!remove_collision(rp->tterm.term_names,
424                                       qp->tterm.term_names)) {
425                     ++multiples;
426                 }
427             }
428         }
429     }
430     if (multiples > 0) {
431         DEBUG(2, (T_RETURN("false")));
432         return (FALSE);
433     }
434
435     DEBUG(2, ("NO MULTIPLE NAME OCCURRENCES"));
436
437     /*
438      * First resolution stage: compute link pointers corresponding to names.
439      */
440     total_unresolved = 0;
441     _nc_curr_col = -1;
442     for_entry_list(qp) {
443         unresolved = 0;
444         for (i = 0; i < qp->nuses; i++) {
445             bool foundit;
446             char *child = _nc_first_name(qp->tterm.term_names);
447             char *lookfor = qp->uses[i].name;
448             long lookline = qp->uses[i].line;
449
450             if (lookfor == 0)
451                 continue;
452
453             foundit = FALSE;
454
455             _nc_set_type(child);
456
457             /* first, try to resolve from in-core records */
458             for_entry_list(rp) {
459                 if (rp != qp
460                     && _nc_name_match(rp->tterm.term_names, lookfor, "|")) {
461                     DEBUG(2, ("%s: resolving use=%s %p (in core)",
462                               child, lookfor, lookfor));
463
464                     qp->uses[i].link = rp;
465                     foundit = TRUE;
466
467                     /* verify that there are no earlier uses */
468                     for (j = 0; j < i; ++j) {
469                         if (qp->uses[j].link != NULL
470                             && !strcmp(qp->uses[j].link->tterm.term_names,
471                                        rp->tterm.term_names)) {
472                             _nc_warning("duplicate use=%s", lookfor);
473                             break;
474                         }
475                     }
476                 }
477             }
478
479             /* if that didn't work, try to merge in a compiled entry */
480             if (!foundit) {
481                 TERMTYPE2 thisterm;
482                 char filename[PATH_MAX];
483
484                 memset(&thisterm, 0, sizeof(thisterm));
485                 if (_nc_read_entry2(lookfor, filename, &thisterm) == 1) {
486                     DEBUG(2, ("%s: resolving use=%s (compiled)",
487                               child, lookfor));
488
489                     TYPE_MALLOC(ENTRY, 1, rp);
490                     rp->tterm = thisterm;
491                     rp->nuses = 0;
492                     rp->next = lastread;
493                     lastread = rp;
494
495                     qp->uses[i].link = rp;
496                     foundit = TRUE;
497
498                     /* verify that there are no earlier uses */
499                     for (j = 0; j < i; ++j) {
500                         if (qp->uses[j].link != NULL
501                             && !strcmp(qp->uses[j].link->tterm.term_names,
502                                        rp->tterm.term_names)) {
503                             _nc_warning("duplicate use=%s", lookfor);
504                             break;
505                         }
506                     }
507                 }
508             }
509
510             /* no good, mark this one unresolvable and complain */
511             if (!foundit) {
512                 unresolved++;
513                 total_unresolved++;
514
515                 _nc_curr_line = (int) lookline;
516                 _nc_warning("resolution of use=%s failed", lookfor);
517                 qp->uses[i].link = 0;
518             }
519         }
520     }
521     if (total_unresolved) {
522         /* free entries read in off disk */
523         _nc_free_entries(lastread);
524         DEBUG(2, (T_RETURN("false")));
525         return (FALSE);
526     }
527
528     DEBUG(2, ("NAME RESOLUTION COMPLETED OK"));
529
530     /*
531      * OK, at this point all (char *) references in `name' members
532      * have been successfully converted to (ENTRY *) pointers in
533      * `link' members.  Time to do the actual merges.
534      */
535     if (fullresolve) {
536         do {
537             ENTRY merged;
538
539             keepgoing = FALSE;
540
541             for_entry_list(qp) {
542                 if (qp->nuses > 0) {
543                     DEBUG(2, ("%s: attempting merge of %d entries",
544                               _nc_first_name(qp->tterm.term_names),
545                               qp->nuses));
546                     /*
547                      * If any of the use entries we're looking for is
548                      * incomplete, punt.  We'll catch this entry on a
549                      * subsequent pass.
550                      */
551                     for (i = 0; i < qp->nuses; i++) {
552                         if (qp->uses[i].link
553                             && qp->uses[i].link->nuses) {
554                             DEBUG(2, ("%s: use entry %d unresolved",
555                                       _nc_first_name(qp->tterm.term_names), i));
556                             goto incomplete;
557                         }
558                     }
559
560                     /*
561                      * First, make sure there is no garbage in the
562                      * merge block.  As a side effect, copy into
563                      * the merged entry the name field and string
564                      * table pointer.
565                      */
566                     _nc_copy_termtype2(&(merged.tterm), &(qp->tterm));
567
568                     /*
569                      * Now merge in each use entry in the proper
570                      * (reverse) order.
571                      */
572                     for (; qp->nuses; qp->nuses--) {
573                         validate_merge(&merged,
574                                        qp->uses[qp->nuses - 1].link);
575                         _nc_merge_entry(&merged,
576                                         qp->uses[qp->nuses - 1].link);
577                     }
578
579                     /*
580                      * Now merge in the original entry.
581                      */
582                     validate_merge(&merged, qp);
583                     _nc_merge_entry(&merged, qp);
584
585                     /*
586                      * Replace the original entry with the merged one.
587                      */
588                     FreeIfNeeded(qp->tterm.Booleans);
589                     FreeIfNeeded(qp->tterm.Numbers);
590                     FreeIfNeeded(qp->tterm.Strings);
591                     FreeIfNeeded(qp->tterm.str_table);
592 #if NCURSES_XNAMES
593                     FreeIfNeeded(qp->tterm.ext_Names);
594                     FreeIfNeeded(qp->tterm.ext_str_table);
595 #endif
596                     qp->tterm = merged.tterm;
597                     _nc_wrap_entry(qp, TRUE);
598
599                     /*
600                      * We know every entry is resolvable because name resolution
601                      * didn't bomb.  So go back for another pass.
602                      */
603                     /* FALLTHRU */
604                   incomplete:
605                     keepgoing = TRUE;
606                 }
607             }
608         } while
609             (keepgoing);
610
611         DEBUG(2, ("MERGES COMPLETED OK"));
612     }
613
614     /*
615      * We'd like to free entries read in off disk at this point, but can't.
616      * The merge_entry() code doesn't copy the strings in the use entries,
617      * it just aliases them.  If this ever changes, do a
618      * free_entries(lastread) here.
619      */
620
621     DEBUG(2, ("RESOLUTION FINISHED"));
622
623     if (fullresolve) {
624         _nc_curr_col = -1;
625         for_entry_list(qp) {
626             _nc_curr_line = (int) qp->startline;
627             _nc_set_type(_nc_first_name(qp->tterm.term_names));
628             /*
629              * tic overrides this function pointer to provide more verbose
630              * checking.
631              */
632             if (_nc_check_termtype2 != sanity_check2) {
633                 SCREEN *save_SP = SP;
634                 SCREEN fake_sp;
635                 TERMINAL fake_tm;
636                 TERMINAL *save_tm = cur_term;
637
638                 /*
639                  * Setup so that tic can use ordinary terminfo interface to
640                  * obtain capability information.
641                  */
642                 memset(&fake_sp, 0, sizeof(fake_sp));
643                 memset(&fake_tm, 0, sizeof(fake_tm));
644                 fake_sp._term = &fake_tm;
645                 TerminalType(&fake_tm) = qp->tterm;
646                 _nc_set_screen(&fake_sp);
647                 set_curterm(&fake_tm);
648
649                 _nc_check_termtype2(&qp->tterm, literal);
650
651                 /*
652                  * Checking calls tparm, which can allocate memory.  Fix leaks.
653                  */
654 #define TPS(name) fake_tm.tparm_state.name
655                 FreeAndNull(TPS(out_buff));
656                 FreeAndNull(TPS(fmt_buff));
657 #undef TPS
658
659                 _nc_set_screen(save_SP);
660                 set_curterm(save_tm);
661             } else {
662                 fixup_acsc(&qp->tterm, literal);
663             }
664         }
665         DEBUG(2, ("SANITY CHECK FINISHED"));
666     }
667
668     DEBUG(2, (T_RETURN("true")));
669     return (TRUE);
670 }
671
672 /*
673  * This bit of legerdemain turns all the terminfo variable names into
674  * references to locations in the arrays Booleans, Numbers, and Strings ---
675  * precisely what's needed.
676  */
677
678 #undef CUR
679 #define CUR tp->
680
681 static void
682 fixup_acsc(TERMTYPE2 *tp, int literal)
683 {
684     if (!literal) {
685         if (acs_chars == ABSENT_STRING
686             && PRESENT(enter_alt_charset_mode)
687             && PRESENT(exit_alt_charset_mode))
688             acs_chars = strdup(VT_ACSC);
689     }
690 }
691
692 static void
693 sanity_check2(TERMTYPE2 *tp, bool literal)
694 {
695     if (!PRESENT(exit_attribute_mode)) {
696 #ifdef __UNUSED__               /* this casts too wide a net */
697         bool terminal_entry = !strchr(tp->term_names, '+');
698         if (terminal_entry &&
699             (PRESENT(set_attributes)
700              || PRESENT(enter_standout_mode)
701              || PRESENT(enter_underline_mode)
702              || PRESENT(enter_blink_mode)
703              || PRESENT(enter_bold_mode)
704              || PRESENT(enter_dim_mode)
705              || PRESENT(enter_secure_mode)
706              || PRESENT(enter_protected_mode)
707              || PRESENT(enter_reverse_mode)))
708             _nc_warning("no exit_attribute_mode");
709 #endif /* __UNUSED__ */
710         PAIRED(enter_standout_mode, exit_standout_mode);
711         PAIRED(enter_underline_mode, exit_underline_mode);
712 #if defined(enter_italics_mode) && defined(exit_italics_mode)
713         PAIRED(enter_italics_mode, exit_italics_mode);
714 #endif
715     }
716
717     /* we do this check/fix in postprocess_termcap(), but some packagers
718      * prefer to bypass it...
719      */
720     if (!literal) {
721         fixup_acsc(tp, literal);
722         ANDMISSING(enter_alt_charset_mode, acs_chars);
723         ANDMISSING(exit_alt_charset_mode, acs_chars);
724     }
725
726     /* listed in structure-member order of first argument */
727     PAIRED(enter_alt_charset_mode, exit_alt_charset_mode);
728     ANDMISSING(enter_blink_mode, exit_attribute_mode);
729     ANDMISSING(enter_bold_mode, exit_attribute_mode);
730     PAIRED(exit_ca_mode, enter_ca_mode);
731     PAIRED(enter_delete_mode, exit_delete_mode);
732     ANDMISSING(enter_dim_mode, exit_attribute_mode);
733     PAIRED(enter_insert_mode, exit_insert_mode);
734     ANDMISSING(enter_secure_mode, exit_attribute_mode);
735     ANDMISSING(enter_protected_mode, exit_attribute_mode);
736     ANDMISSING(enter_reverse_mode, exit_attribute_mode);
737     PAIRED(from_status_line, to_status_line);
738     PAIRED(meta_off, meta_on);
739
740     PAIRED(prtr_on, prtr_off);
741     PAIRED(save_cursor, restore_cursor);
742     PAIRED(enter_xon_mode, exit_xon_mode);
743     PAIRED(enter_am_mode, exit_am_mode);
744     ANDMISSING(label_off, label_on);
745 #if defined(display_clock) && defined(remove_clock)
746     PAIRED(display_clock, remove_clock);
747 #endif
748     ANDMISSING(set_color_pair, initialize_pair);
749 }
750
751 #if NO_LEAKS
752 NCURSES_EXPORT(void)
753 _nc_leaks_tic(void)
754 {
755     T((T_CALLED("_nc_leaks_tic()")));
756     _nc_globals.leak_checking = TRUE;
757     _nc_alloc_entry_leaks();
758     _nc_captoinfo_leaks();
759     _nc_comp_scan_leaks();
760 #if BROKEN_LINKER || USE_REENTRANT
761     _nc_names_leaks();
762     _nc_codes_leaks();
763 #endif
764     _nc_tic_expand(0, FALSE, 0);
765     T((T_RETURN("")));
766 }
767
768 NCURSES_EXPORT(void)
769 _nc_free_tic(int code)
770 {
771     T((T_CALLED("_nc_free_tic(%d)"), code));
772     _nc_leaks_tic();
773     exit_terminfo(code);
774 }
775 #endif