]> ncurses.scripts.mit.edu Git - ncurses.git/blob - progs/tic.c
ncurses 5.7 - patch 20100911
[ncurses.git] / progs / tic.c
1 /****************************************************************************
2  * Copyright (c) 1998-2009,2010 Free Software Foundation, Inc.              *
3  *                                                                          *
4  * Permission is hereby granted, free of charge, to any person obtaining a  *
5  * copy of this software and associated documentation files (the            *
6  * "Software"), to deal in the Software without restriction, including      *
7  * without limitation the rights to use, copy, modify, merge, publish,      *
8  * distribute, distribute with modifications, sublicense, and/or sell       *
9  * copies of the Software, and to permit persons to whom the Software is    *
10  * furnished to do so, subject to the following conditions:                 *
11  *                                                                          *
12  * The above copyright notice and this permission notice shall be included  *
13  * in all copies or substantial portions of the Software.                   *
14  *                                                                          *
15  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS  *
16  * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF               *
17  * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.   *
18  * IN NO EVENT SHALL THE ABOVE COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,   *
19  * DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR    *
20  * OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR    *
21  * THE USE OR OTHER DEALINGS IN THE SOFTWARE.                               *
22  *                                                                          *
23  * Except as contained in this notice, the name(s) of the above copyright   *
24  * holders shall not be used in advertising or otherwise to promote the     *
25  * sale, use or other dealings in this Software without prior written       *
26  * authorization.                                                           *
27  ****************************************************************************/
28
29 /****************************************************************************
30  *  Author: Zeyd M. Ben-Halim <zmbenhal@netcom.com> 1992,1995               *
31  *     and: Eric S. Raymond <esr@snark.thyrsus.com>                         *
32  *     and: Thomas E. Dickey                        1996 on                 *
33  ****************************************************************************/
34
35 /*
36  *      tic.c --- Main program for terminfo compiler
37  *                      by Eric S. Raymond
38  *
39  */
40
41 #include <progs.priv.h>
42 #include <sys/stat.h>
43
44 #include <dump_entry.h>
45 #include <transform.h>
46
47 MODULE_ID("$Id: tic.c,v 1.143 2010/09/11 17:56:42 tom Exp $")
48
49 const char *_nc_progname = "tic";
50
51 static FILE *log_fp;
52 static FILE *tmp_fp;
53 static bool capdump = FALSE;    /* running as infotocap? */
54 static bool infodump = FALSE;   /* running as captoinfo? */
55 static bool showsummary = FALSE;
56 static const char *to_remove;
57
58 static void (*save_check_termtype) (TERMTYPE *, bool);
59 static void check_termtype(TERMTYPE *tt, bool);
60
61 static const char usage_string[] = "\
62 [-e names] \
63 [-o dir] \
64 [-R name] \
65 [-v[n]] \
66 [-V] \
67 [-w[n]] \
68 [-\
69 1\
70 a\
71 C\
72 c\
73 f\
74 G\
75 g\
76 I\
77 L\
78 N\
79 r\
80 s\
81 T\
82 t\
83 U\
84 x\
85 ] \
86 source-file\n";
87
88 #if NO_LEAKS
89 static void
90 free_namelist(char **src)
91 {
92     if (src != 0) {
93         int n;
94         for (n = 0; src[n] != 0; ++n)
95             free(src[n]);
96         free(src);
97     }
98 }
99 #endif
100
101 static void
102 cleanup(char **namelst GCC_UNUSED)
103 {
104 #if NO_LEAKS
105     free_namelist(namelst);
106 #endif
107     if (tmp_fp != 0)
108         fclose(tmp_fp);
109     if (to_remove != 0) {
110 #if HAVE_REMOVE
111         remove(to_remove);
112 #else
113         unlink(to_remove);
114 #endif
115     }
116 }
117
118 static void
119 failed(const char *msg)
120 {
121     perror(msg);
122     cleanup((char **) 0);
123     ExitProgram(EXIT_FAILURE);
124 }
125
126 static void
127 usage(void)
128 {
129     static const char *const tbl[] =
130     {
131         "Options:",
132         "  -1         format translation output one capability per line",
133 #if NCURSES_XNAMES
134         "  -a         retain commented-out capabilities (sets -x also)",
135 #endif
136         "  -C         translate entries to termcap source form",
137         "  -c         check only, validate input without compiling or translating",
138         "  -e<names>  translate/compile only entries named by comma-separated list",
139         "  -f         format complex strings for readability",
140         "  -G         format %{number} to %'char'",
141         "  -g         format %'char' to %{number}",
142         "  -I         translate entries to terminfo source form",
143         "  -L         translate entries to full terminfo source form",
144         "  -N         disable smart defaults for source translation",
145         "  -o<dir>    set output directory for compiled entry writes",
146         "  -R<name>   restrict translation to given terminfo/termcap version",
147         "  -r         force resolution of all use entries in source translation",
148         "  -s         print summary statistics",
149         "  -T         remove size-restrictions on compiled description",
150 #if NCURSES_XNAMES
151         "  -t         suppress commented-out capabilities",
152 #endif
153         "  -U         suppress post-processing of entries",
154         "  -V         print version",
155         "  -v[n]      set verbosity level",
156         "  -w[n]      set format width for translation output",
157 #if NCURSES_XNAMES
158         "  -x         treat unknown capabilities as user-defined",
159 #endif
160         "",
161         "Parameters:",
162         "  <file>     file to translate or compile"
163     };
164     size_t j;
165
166     fprintf(stderr, "Usage: %s %s\n", _nc_progname, usage_string);
167     for (j = 0; j < SIZEOF(tbl); j++) {
168         fputs(tbl[j], stderr);
169         putc('\n', stderr);
170     }
171     ExitProgram(EXIT_FAILURE);
172 }
173
174 #define L_BRACE '{'
175 #define R_BRACE '}'
176 #define S_QUOTE '\'';
177
178 static void
179 write_it(ENTRY * ep)
180 {
181     unsigned n;
182     int ch;
183     char *s, *d, *t;
184     char result[MAX_ENTRY_SIZE];
185
186     /*
187      * Look for strings that contain %{number}, convert them to %'char',
188      * which is shorter and runs a little faster.
189      */
190     for (n = 0; n < STRCOUNT; n++) {
191         s = ep->tterm.Strings[n];
192         if (VALID_STRING(s)
193             && strchr(s, L_BRACE) != 0) {
194             d = result;
195             t = s;
196             while ((ch = *t++) != 0) {
197                 *d++ = (char) ch;
198                 if (ch == '\\') {
199                     *d++ = *t++;
200                 } else if ((ch == '%')
201                            && (*t == L_BRACE)) {
202                     char *v = 0;
203                     long value = strtol(t + 1, &v, 0);
204                     if (v != 0
205                         && *v == R_BRACE
206                         && value > 0
207                         && value != '\\'        /* FIXME */
208                         && value < 127
209                         && isprint((int) value)) {
210                         *d++ = S_QUOTE;
211                         *d++ = (char) value;
212                         *d++ = S_QUOTE;
213                         t = (v + 1);
214                     }
215                 }
216             }
217             *d = 0;
218             if (strlen(result) < strlen(s))
219                 strcpy(s, result);
220         }
221     }
222
223     _nc_set_type(_nc_first_name(ep->tterm.term_names));
224     _nc_curr_line = ep->startline;
225     _nc_write_entry(&ep->tterm);
226 }
227
228 static bool
229 immedhook(ENTRY * ep GCC_UNUSED)
230 /* write out entries with no use capabilities immediately to save storage */
231 {
232 #if !HAVE_BIG_CORE
233     /*
234      * This is strictly a core-economy kluge.  The really clean way to handle
235      * compilation is to slurp the whole file into core and then do all the
236      * name-collision checks and entry writes in one swell foop.  But the
237      * terminfo master file is large enough that some core-poor systems swap
238      * like crazy when you compile it this way...there have been reports of
239      * this process taking *three hours*, rather than the twenty seconds or
240      * less typical on my development box.
241      *
242      * So.  This hook *immediately* writes out the referenced entry if it
243      * has no use capabilities.  The compiler main loop refrains from
244      * adding the entry to the in-core list when this hook fires.  If some
245      * other entry later needs to reference an entry that got written
246      * immediately, that's OK; the resolution code will fetch it off disk
247      * when it can't find it in core.
248      *
249      * Name collisions will still be detected, just not as cleanly.  The
250      * write_entry() code complains before overwriting an entry that
251      * postdates the time of tic's first call to write_entry().  Thus
252      * it will complain about overwriting entries newly made during the
253      * tic run, but not about overwriting ones that predate it.
254      *
255      * The reason this is a hook, and not in line with the rest of the
256      * compiler code, is that the support for termcap fallback cannot assume
257      * it has anywhere to spool out these entries!
258      *
259      * The _nc_set_type() call here requires a compensating one in
260      * _nc_parse_entry().
261      *
262      * If you define HAVE_BIG_CORE, you'll disable this kluge.  This will
263      * make tic a bit faster (because the resolution code won't have to do
264      * disk I/O nearly as often).
265      */
266     if (ep->nuses == 0) {
267         int oldline = _nc_curr_line;
268
269         write_it(ep);
270         _nc_curr_line = oldline;
271         free(ep->tterm.str_table);
272         return (TRUE);
273     }
274 #endif /* HAVE_BIG_CORE */
275     return (FALSE);
276 }
277
278 static void
279 put_translate(int c)
280 /* emit a comment char, translating terminfo names to termcap names */
281 {
282     static bool in_name = FALSE;
283     static size_t have, used;
284     static char *namebuf, *suffix;
285
286     if (in_name) {
287         if (used + 1 >= have) {
288             have += 132;
289             namebuf = typeRealloc(char, have, namebuf);
290             suffix = typeRealloc(char, have, suffix);
291         }
292         if (c == '\n' || c == '@') {
293             namebuf[used++] = '\0';
294             (void) putchar('<');
295             (void) fputs(namebuf, stdout);
296             putchar(c);
297             in_name = FALSE;
298         } else if (c != '>') {
299             namebuf[used++] = (char) c;
300         } else {                /* ah! candidate name! */
301             char *up;
302             NCURSES_CONST char *tp;
303
304             namebuf[used++] = '\0';
305             in_name = FALSE;
306
307             suffix[0] = '\0';
308             if ((up = strchr(namebuf, '#')) != 0
309                 || (up = strchr(namebuf, '=')) != 0
310                 || ((up = strchr(namebuf, '@')) != 0 && up[1] == '>')) {
311                 (void) strcpy(suffix, up);
312                 *up = '\0';
313             }
314
315             if ((tp = nametrans(namebuf)) != 0) {
316                 (void) putchar(':');
317                 (void) fputs(tp, stdout);
318                 (void) fputs(suffix, stdout);
319                 (void) putchar(':');
320             } else {
321                 /* couldn't find a translation, just dump the name */
322                 (void) putchar('<');
323                 (void) fputs(namebuf, stdout);
324                 (void) fputs(suffix, stdout);
325                 (void) putchar('>');
326             }
327         }
328     } else {
329         used = 0;
330         if (c == '<') {
331             in_name = TRUE;
332         } else {
333             putchar(c);
334         }
335     }
336 }
337
338 /* Returns a string, stripped of leading/trailing whitespace */
339 static char *
340 stripped(char *src)
341 {
342     while (isspace(UChar(*src)))
343         src++;
344     if (*src != '\0') {
345         char *dst;
346         size_t len;
347
348         if ((dst = strdup(src)) == NULL)
349             failed("strdup");
350
351         assert(dst != 0);
352
353         len = strlen(dst);
354         while (--len != 0 && isspace(UChar(dst[len])))
355             dst[len] = '\0';
356         return dst;
357     }
358     return 0;
359 }
360
361 static FILE *
362 open_input(const char *filename)
363 {
364     FILE *fp = fopen(filename, "r");
365     struct stat sb;
366
367     if (fp == 0) {
368         fprintf(stderr, "%s: Can't open %s\n", _nc_progname, filename);
369         ExitProgram(EXIT_FAILURE);
370     }
371     if (fstat(fileno(fp), &sb) < 0
372         || (sb.st_mode & S_IFMT) != S_IFREG) {
373         fprintf(stderr, "%s: %s is not a file\n", _nc_progname, filename);
374         ExitProgram(EXIT_FAILURE);
375     }
376     return fp;
377 }
378
379 /* Parse the "-e" option-value into a list of names */
380 static char **
381 make_namelist(char *src)
382 {
383     char **dst = 0;
384
385     char *s, *base;
386     unsigned pass, n, nn;
387     char buffer[BUFSIZ];
388
389     if (src == 0) {
390         /* EMPTY */ ;
391     } else if (strchr(src, '/') != 0) {         /* a filename */
392         FILE *fp = open_input(src);
393
394         for (pass = 1; pass <= 2; pass++) {
395             nn = 0;
396             while (fgets(buffer, sizeof(buffer), fp) != 0) {
397                 if ((s = stripped(buffer)) != 0) {
398                     if (dst != 0)
399                         dst[nn] = s;
400                     else
401                         free(s);
402                     nn++;
403                 }
404             }
405             if (pass == 1) {
406                 dst = typeCalloc(char *, nn + 1);
407                 rewind(fp);
408             }
409         }
410         fclose(fp);
411     } else {                    /* literal list of names */
412         for (pass = 1; pass <= 2; pass++) {
413             for (n = nn = 0, base = src;; n++) {
414                 int mark = src[n];
415                 if (mark == ',' || mark == '\0') {
416                     if (pass == 1) {
417                         nn++;
418                     } else {
419                         src[n] = '\0';
420                         if ((s = stripped(base)) != 0)
421                             dst[nn++] = s;
422                         base = &src[n + 1];
423                     }
424                 }
425                 if (mark == '\0')
426                     break;
427             }
428             if (pass == 1)
429                 dst = typeCalloc(char *, nn + 1);
430         }
431     }
432     if (showsummary && (dst != 0)) {
433         fprintf(log_fp, "Entries that will be compiled:\n");
434         for (n = 0; dst[n] != 0; n++)
435             fprintf(log_fp, "%u:%s\n", n + 1, dst[n]);
436     }
437     return dst;
438 }
439
440 static bool
441 matches(char **needle, const char *haystack)
442 /* does entry in needle list match |-separated field in haystack? */
443 {
444     bool code = FALSE;
445     size_t n;
446
447     if (needle != 0) {
448         for (n = 0; needle[n] != 0; n++) {
449             if (_nc_name_match(haystack, needle[n], "|")) {
450                 code = TRUE;
451                 break;
452             }
453         }
454     } else
455         code = TRUE;
456     return (code);
457 }
458
459 static FILE *
460 open_tempfile(char *name)
461 {
462     FILE *result = 0;
463 #if HAVE_MKSTEMP
464     int fd = mkstemp(name);
465     if (fd >= 0)
466         result = fdopen(fd, "w");
467 #else
468     if (tmpnam(name) != 0)
469         result = fopen(name, "w");
470 #endif
471     return result;
472 }
473
474 int
475 main(int argc, char *argv[])
476 {
477     char my_tmpname[PATH_MAX];
478     int v_opt = -1, debug_level;
479     int smart_defaults = TRUE;
480     char *termcap;
481     ENTRY *qp;
482
483     int this_opt, last_opt = '?';
484
485     int outform = F_TERMINFO;   /* output format */
486     int sortmode = S_TERMINFO;  /* sort_mode */
487
488     int width = 60;
489     bool formatted = FALSE;     /* reformat complex strings? */
490     bool literal = FALSE;       /* suppress post-processing? */
491     int numbers = 0;            /* format "%'char'" to/from "%{number}" */
492     bool forceresolve = FALSE;  /* force resolution */
493     bool limited = TRUE;
494     char *tversion = (char *) NULL;
495     const char *source_file = "terminfo";
496     char **namelst = 0;
497     char *outdir = (char *) NULL;
498     bool check_only = FALSE;
499     bool suppress_untranslatable = FALSE;
500
501     log_fp = stderr;
502
503     _nc_progname = _nc_rootname(argv[0]);
504
505     if ((infodump = same_program(_nc_progname, PROG_CAPTOINFO)) != FALSE) {
506         outform = F_TERMINFO;
507         sortmode = S_TERMINFO;
508     }
509     if ((capdump = same_program(_nc_progname, PROG_INFOTOCAP)) != FALSE) {
510         outform = F_TERMCAP;
511         sortmode = S_TERMCAP;
512     }
513 #if NCURSES_XNAMES
514     use_extended_names(FALSE);
515 #endif
516
517     /*
518      * Processing arguments is a little complicated, since someone made a
519      * design decision to allow the numeric values for -w, -v options to
520      * be optional.
521      */
522     while ((this_opt = getopt(argc, argv,
523                               "0123456789CILNR:TUVace:fGgo:rstvwx")) != -1) {
524         if (isdigit(this_opt)) {
525             switch (last_opt) {
526             case 'v':
527                 v_opt = (v_opt * 10) + (this_opt - '0');
528                 break;
529             case 'w':
530                 width = (width * 10) + (this_opt - '0');
531                 break;
532             default:
533                 if (this_opt != '1')
534                     usage();
535                 last_opt = this_opt;
536                 width = 0;
537             }
538             continue;
539         }
540         switch (this_opt) {
541         case 'C':
542             capdump = TRUE;
543             outform = F_TERMCAP;
544             sortmode = S_TERMCAP;
545             break;
546         case 'I':
547             infodump = TRUE;
548             outform = F_TERMINFO;
549             sortmode = S_TERMINFO;
550             break;
551         case 'L':
552             infodump = TRUE;
553             outform = F_VARIABLE;
554             sortmode = S_VARIABLE;
555             break;
556         case 'N':
557             smart_defaults = FALSE;
558             literal = TRUE;
559             break;
560         case 'R':
561             tversion = optarg;
562             break;
563         case 'T':
564             limited = FALSE;
565             break;
566         case 'U':
567             literal = TRUE;
568             break;
569         case 'V':
570             puts(curses_version());
571             cleanup(namelst);
572             ExitProgram(EXIT_SUCCESS);
573         case 'c':
574             check_only = TRUE;
575             break;
576         case 'e':
577             namelst = make_namelist(optarg);
578             break;
579         case 'f':
580             formatted = TRUE;
581             break;
582         case 'G':
583             numbers = 1;
584             break;
585         case 'g':
586             numbers = -1;
587             break;
588         case 'o':
589             outdir = optarg;
590             break;
591         case 'r':
592             forceresolve = TRUE;
593             break;
594         case 's':
595             showsummary = TRUE;
596             break;
597         case 'v':
598             v_opt = 0;
599             break;
600         case 'w':
601             width = 0;
602             break;
603 #if NCURSES_XNAMES
604         case 't':
605             _nc_disable_period = FALSE;
606             suppress_untranslatable = TRUE;
607             break;
608         case 'a':
609             _nc_disable_period = TRUE;
610             /* FALLTHRU */
611         case 'x':
612             use_extended_names(TRUE);
613             break;
614 #endif
615         default:
616             usage();
617         }
618         last_opt = this_opt;
619     }
620
621     debug_level = (v_opt > 0) ? v_opt : (v_opt == 0);
622     set_trace_level(debug_level);
623
624     if (_nc_tracing) {
625         save_check_termtype = _nc_check_termtype2;
626         _nc_check_termtype2 = check_termtype;
627     }
628 #if !HAVE_BIG_CORE
629     /*
630      * Aaargh! immedhook seriously hoses us!
631      *
632      * One problem with immedhook is it means we can't do -e.  Problem
633      * is that we can't guarantee that for each terminal listed, all the
634      * terminals it depends on will have been kept in core for reference
635      * resolution -- in fact it's certain the primitive types at the end
636      * of reference chains *won't* be in core unless they were explicitly
637      * in the select list themselves.
638      */
639     if (namelst && (!infodump && !capdump)) {
640         (void) fprintf(stderr,
641                        "Sorry, -e can't be used without -I or -C\n");
642         cleanup(namelst);
643         ExitProgram(EXIT_FAILURE);
644     }
645 #endif /* HAVE_BIG_CORE */
646
647     if (optind < argc) {
648         source_file = argv[optind++];
649         if (optind < argc) {
650             fprintf(stderr,
651                     "%s: Too many file names.  Usage:\n\t%s %s",
652                     _nc_progname,
653                     _nc_progname,
654                     usage_string);
655             ExitProgram(EXIT_FAILURE);
656         }
657     } else {
658         if (infodump == TRUE) {
659             /* captoinfo's no-argument case */
660             source_file = "/etc/termcap";
661             if ((termcap = getenv("TERMCAP")) != 0
662                 && (namelst = make_namelist(getenv("TERM"))) != 0) {
663                 if (access(termcap, F_OK) == 0) {
664                     /* file exists */
665                     source_file = termcap;
666                 } else if ((tmp_fp = open_tempfile(strcpy(my_tmpname,
667                                                           "/tmp/XXXXXX")))
668                            != 0) {
669                     source_file = my_tmpname;
670                     fprintf(tmp_fp, "%s\n", termcap);
671                     fclose(tmp_fp);
672                     tmp_fp = open_input(source_file);
673                     to_remove = source_file;
674                 } else {
675                     failed("tmpnam");
676                 }
677             }
678         } else {
679             /* tic */
680             fprintf(stderr,
681                     "%s: File name needed.  Usage:\n\t%s %s",
682                     _nc_progname,
683                     _nc_progname,
684                     usage_string);
685             cleanup(namelst);
686             ExitProgram(EXIT_FAILURE);
687         }
688     }
689
690     if (tmp_fp == 0)
691         tmp_fp = open_input(source_file);
692
693     if (infodump)
694         dump_init(tversion,
695                   smart_defaults
696                   ? outform
697                   : F_LITERAL,
698                   sortmode, width, debug_level, formatted);
699     else if (capdump)
700         dump_init(tversion,
701                   outform,
702                   sortmode, width, debug_level, FALSE);
703
704     /* parse entries out of the source file */
705     _nc_set_source(source_file);
706 #if !HAVE_BIG_CORE
707     if (!(check_only || infodump || capdump))
708         _nc_set_writedir(outdir);
709 #endif /* HAVE_BIG_CORE */
710     _nc_read_entry_source(tmp_fp, (char *) NULL,
711                           !smart_defaults || literal, FALSE,
712                           ((check_only || infodump || capdump)
713                            ? NULLHOOK
714                            : immedhook));
715
716     /* do use resolution */
717     if (check_only || (!infodump && !capdump) || forceresolve) {
718         if (!_nc_resolve_uses2(TRUE, literal) && !check_only) {
719             cleanup(namelst);
720             ExitProgram(EXIT_FAILURE);
721         }
722     }
723
724     /* length check */
725     if (check_only && (capdump || infodump)) {
726         for_entry_list(qp) {
727             if (matches(namelst, qp->tterm.term_names)) {
728                 int len = fmt_entry(&qp->tterm, NULL, FALSE, TRUE, infodump, numbers);
729
730                 if (len > (infodump ? MAX_TERMINFO_LENGTH : MAX_TERMCAP_LENGTH))
731                     (void) fprintf(stderr,
732                                    "warning: resolved %s entry is %d bytes long\n",
733                                    _nc_first_name(qp->tterm.term_names),
734                                    len);
735             }
736         }
737     }
738
739     /* write or dump all entries */
740     if (!check_only) {
741         if (!infodump && !capdump) {
742             _nc_set_writedir(outdir);
743             for_entry_list(qp) {
744                 if (matches(namelst, qp->tterm.term_names))
745                     write_it(qp);
746             }
747         } else {
748             /* this is in case infotocap() generates warnings */
749             _nc_curr_col = _nc_curr_line = -1;
750
751             for_entry_list(qp) {
752                 if (matches(namelst, qp->tterm.term_names)) {
753                     int j = qp->cend - qp->cstart;
754                     int len = 0;
755
756                     /* this is in case infotocap() generates warnings */
757                     _nc_set_type(_nc_first_name(qp->tterm.term_names));
758
759                     (void) fseek(tmp_fp, qp->cstart, SEEK_SET);
760                     while (j-- > 0) {
761                         if (infodump)
762                             (void) putchar(fgetc(tmp_fp));
763                         else
764                             put_translate(fgetc(tmp_fp));
765                     }
766
767                     repair_acsc(&qp->tterm);
768                     dump_entry(&qp->tterm, suppress_untranslatable,
769                                limited, numbers, NULL);
770                     for (j = 0; j < (int) qp->nuses; j++)
771                         dump_uses(qp->uses[j].name, !capdump);
772                     len = show_entry();
773                     if (debug_level != 0 && !limited)
774                         printf("# length=%d\n", len);
775                 }
776             }
777             if (!namelst && _nc_tail) {
778                 int c, oldc = '\0';
779                 bool in_comment = FALSE;
780                 bool trailing_comment = FALSE;
781
782                 (void) fseek(tmp_fp, _nc_tail->cend, SEEK_SET);
783                 while ((c = fgetc(tmp_fp)) != EOF) {
784                     if (oldc == '\n') {
785                         if (c == '#') {
786                             trailing_comment = TRUE;
787                             in_comment = TRUE;
788                         } else {
789                             in_comment = FALSE;
790                         }
791                     }
792                     if (trailing_comment
793                         && (in_comment || (oldc == '\n' && c == '\n')))
794                         putchar(c);
795                     oldc = c;
796                 }
797             }
798         }
799     }
800
801     /* Show the directory into which entries were written, and the total
802      * number of entries
803      */
804     if (showsummary
805         && (!(check_only || infodump || capdump))) {
806         int total = _nc_tic_written();
807         if (total != 0)
808             fprintf(log_fp, "%d entries written to %s\n",
809                     total,
810                     _nc_tic_dir((char *) 0));
811         else
812             fprintf(log_fp, "No entries written\n");
813     }
814     cleanup(namelst);
815     ExitProgram(EXIT_SUCCESS);
816 }
817
818 /*
819  * This bit of legerdemain turns all the terminfo variable names into
820  * references to locations in the arrays Booleans, Numbers, and Strings ---
821  * precisely what's needed (see comp_parse.c).
822  */
823 #undef CUR
824 #define CUR tp->
825
826 /*
827  * Check if the alternate character-set capabilities are consistent.
828  */
829 static void
830 check_acs(TERMTYPE *tp)
831 {
832     if (VALID_STRING(acs_chars)) {
833         const char *boxes = "lmkjtuvwqxn";
834         char mapped[256];
835         char missing[256];
836         const char *p;
837         char *q;
838
839         memset(mapped, 0, sizeof(mapped));
840         for (p = acs_chars; *p != '\0'; p += 2) {
841             if (p[1] == '\0') {
842                 _nc_warning("acsc has odd number of characters");
843                 break;
844             }
845             mapped[UChar(p[0])] = p[1];
846         }
847
848         if (mapped[UChar('I')] && !mapped[UChar('i')]) {
849             _nc_warning("acsc refers to 'I', which is probably an error");
850         }
851
852         for (p = boxes, q = missing; *p != '\0'; ++p) {
853             if (!mapped[UChar(p[0])]) {
854                 *q++ = p[0];
855             }
856         }
857         *q = '\0';
858
859         assert(strlen(missing) <= strlen(boxes));
860         if (*missing != '\0' && strcmp(missing, boxes)) {
861             _nc_warning("acsc is missing some line-drawing mapping: %s", missing);
862         }
863     }
864 }
865
866 /*
867  * Check if the color capabilities are consistent
868  */
869 static void
870 check_colors(TERMTYPE *tp)
871 {
872     if ((max_colors > 0) != (max_pairs > 0)
873         || ((max_colors > max_pairs) && (initialize_pair == 0)))
874         _nc_warning("inconsistent values for max_colors (%d) and max_pairs (%d)",
875                     max_colors, max_pairs);
876
877     PAIRED(set_foreground, set_background);
878     PAIRED(set_a_foreground, set_a_background);
879     PAIRED(set_color_pair, initialize_pair);
880
881     if (VALID_STRING(set_foreground)
882         && VALID_STRING(set_a_foreground)
883         && !_nc_capcmp(set_foreground, set_a_foreground))
884         _nc_warning("expected setf/setaf to be different");
885
886     if (VALID_STRING(set_background)
887         && VALID_STRING(set_a_background)
888         && !_nc_capcmp(set_background, set_a_background))
889         _nc_warning("expected setb/setab to be different");
890
891     /* see: has_colors() */
892     if (VALID_NUMERIC(max_colors) && VALID_NUMERIC(max_pairs)
893         && (((set_foreground != NULL)
894              && (set_background != NULL))
895             || ((set_a_foreground != NULL)
896                 && (set_a_background != NULL))
897             || set_color_pair)) {
898         if (!VALID_STRING(orig_pair) && !VALID_STRING(orig_colors))
899             _nc_warning("expected either op/oc string for resetting colors");
900     }
901 }
902
903 static char
904 keypad_final(const char *string)
905 {
906     char result = '\0';
907
908     if (VALID_STRING(string)
909         && *string++ == '\033'
910         && *string++ == 'O'
911         && strlen(string) == 1) {
912         result = *string;
913     }
914
915     return result;
916 }
917
918 static int
919 keypad_index(const char *string)
920 {
921     char *test;
922     const char *list = "PQRSwxymtuvlqrsPpn";    /* app-keypad except "Enter" */
923     int ch;
924     int result = -1;
925
926     if ((ch = keypad_final(string)) != '\0') {
927         test = strchr(list, ch);
928         if (test != 0)
929             result = (test - list);
930     }
931     return result;
932 }
933
934 #define MAX_KP 5
935 /*
936  * Do a quick sanity-check for vt100-style keypads to see if the 5-key keypad
937  * is mapped inconsistently.
938  */
939 static void
940 check_keypad(TERMTYPE *tp)
941 {
942     char show[80];
943
944     if (VALID_STRING(key_a1) &&
945         VALID_STRING(key_a3) &&
946         VALID_STRING(key_b2) &&
947         VALID_STRING(key_c1) &&
948         VALID_STRING(key_c3)) {
949         char final[MAX_KP + 1];
950         int list[MAX_KP];
951         int increase = 0;
952         int j, k, kk;
953         int last;
954         int test;
955
956         final[0] = keypad_final(key_a1);
957         final[1] = keypad_final(key_a3);
958         final[2] = keypad_final(key_b2);
959         final[3] = keypad_final(key_c1);
960         final[4] = keypad_final(key_c3);
961         final[5] = '\0';
962
963         /* special case: legacy coding using 1,2,3,0,. on the bottom */
964         assert(strlen(final) <= MAX_KP);
965         if (!strcmp(final, "qsrpn"))
966             return;
967
968         list[0] = keypad_index(key_a1);
969         list[1] = keypad_index(key_a3);
970         list[2] = keypad_index(key_b2);
971         list[3] = keypad_index(key_c1);
972         list[4] = keypad_index(key_c3);
973
974         /* check that they're all vt100 keys */
975         for (j = 0; j < MAX_KP; ++j) {
976             if (list[j] < 0) {
977                 return;
978             }
979         }
980
981         /* check if they're all in increasing order */
982         for (j = 1; j < MAX_KP; ++j) {
983             if (list[j] > list[j - 1]) {
984                 ++increase;
985             }
986         }
987         if (increase != (MAX_KP - 1)) {
988             show[0] = '\0';
989
990             for (j = 0, last = -1; j < MAX_KP; ++j) {
991                 for (k = 0, kk = -1, test = 100; k < 5; ++k) {
992                     if (list[k] > last &&
993                         list[k] < test) {
994                         test = list[k];
995                         kk = k;
996                     }
997                 }
998                 last = test;
999                 assert(strlen(show) < (MAX_KP * 4));
1000                 switch (kk) {
1001                 case 0:
1002                     strcat(show, " ka1");
1003                     break;
1004                 case 1:
1005                     strcat(show, " ka3");
1006                     break;
1007                 case 2:
1008                     strcat(show, " kb2");
1009                     break;
1010                 case 3:
1011                     strcat(show, " kc1");
1012                     break;
1013                 case 4:
1014                     strcat(show, " kc3");
1015                     break;
1016                 }
1017             }
1018
1019             _nc_warning("vt100 keypad order inconsistent: %s", show);
1020         }
1021
1022     } else if (VALID_STRING(key_a1) ||
1023                VALID_STRING(key_a3) ||
1024                VALID_STRING(key_b2) ||
1025                VALID_STRING(key_c1) ||
1026                VALID_STRING(key_c3)) {
1027         show[0] = '\0';
1028         if (keypad_index(key_a1) >= 0)
1029             strcat(show, " ka1");
1030         if (keypad_index(key_a3) >= 0)
1031             strcat(show, " ka3");
1032         if (keypad_index(key_b2) >= 0)
1033             strcat(show, " kb2");
1034         if (keypad_index(key_c1) >= 0)
1035             strcat(show, " kc1");
1036         if (keypad_index(key_c3) >= 0)
1037             strcat(show, " kc3");
1038         if (*show != '\0')
1039             _nc_warning("vt100 keypad map incomplete:%s", show);
1040     }
1041 }
1042
1043 /*
1044  * Returns the expected number of parameters for the given capability.
1045  */
1046 static int
1047 expected_params(const char *name)
1048 {
1049     /* *INDENT-OFF* */
1050     static const struct {
1051         const char *name;
1052         int count;
1053     } table[] = {
1054         { "S0",                 1 },    /* 'screen' extension */
1055         { "birep",              2 },
1056         { "chr",                1 },
1057         { "colornm",            1 },
1058         { "cpi",                1 },
1059         { "csnm",               1 },
1060         { "csr",                2 },
1061         { "cub",                1 },
1062         { "cud",                1 },
1063         { "cuf",                1 },
1064         { "cup",                2 },
1065         { "cuu",                1 },
1066         { "cvr",                1 },
1067         { "cwin",               5 },
1068         { "dch",                1 },
1069         { "defc",               3 },
1070         { "dial",               1 },
1071         { "dispc",              1 },
1072         { "dl",                 1 },
1073         { "ech",                1 },
1074         { "getm",               1 },
1075         { "hpa",                1 },
1076         { "ich",                1 },
1077         { "il",                 1 },
1078         { "indn",               1 },
1079         { "initc",              4 },
1080         { "initp",              7 },
1081         { "lpi",                1 },
1082         { "mc5p",               1 },
1083         { "mrcup",              2 },
1084         { "mvpa",               1 },
1085         { "pfkey",              2 },
1086         { "pfloc",              2 },
1087         { "pfx",                2 },
1088         { "pfxl",               3 },
1089         { "pln",                2 },
1090         { "qdial",              1 },
1091         { "rcsd",               1 },
1092         { "rep",                2 },
1093         { "rin",                1 },
1094         { "sclk",               3 },
1095         { "scp",                1 },
1096         { "scs",                1 },
1097         { "scsd",               2 },
1098         { "setab",              1 },
1099         { "setaf",              1 },
1100         { "setb",               1 },
1101         { "setcolor",           1 },
1102         { "setf",               1 },
1103         { "sgr",                9 },
1104         { "sgr1",               6 },
1105         { "slength",            1 },
1106         { "slines",             1 },
1107         { "smgbp",              1 },    /* 2 if smgtp is not given */
1108         { "smglp",              1 },
1109         { "smglr",              2 },
1110         { "smgrp",              1 },
1111         { "smgtb",              2 },
1112         { "smgtp",              1 },
1113         { "tsl",                1 },
1114         { "u6",                 -1 },
1115         { "vpa",                1 },
1116         { "wind",               4 },
1117         { "wingo",              1 },
1118     };
1119     /* *INDENT-ON* */
1120
1121     unsigned n;
1122     int result = 0;             /* function-keys, etc., use none */
1123
1124     for (n = 0; n < SIZEOF(table); n++) {
1125         if (!strcmp(name, table[n].name)) {
1126             result = table[n].count;
1127             break;
1128         }
1129     }
1130
1131     return result;
1132 }
1133
1134 /*
1135  * Make a quick sanity check for the parameters which are used in the given
1136  * strings.  If there are no "%p" tokens, then there should be no other "%"
1137  * markers.
1138  */
1139 static void
1140 check_params(TERMTYPE *tp, const char *name, char *value)
1141 {
1142     int expected = expected_params(name);
1143     int actual = 0;
1144     int n;
1145     bool params[10];
1146     char *s = value;
1147
1148 #ifdef set_top_margin_parm
1149     if (!strcmp(name, "smgbp")
1150         && set_top_margin_parm == 0)
1151         expected = 2;
1152 #endif
1153
1154     for (n = 0; n < 10; n++)
1155         params[n] = FALSE;
1156
1157     while (*s != 0) {
1158         if (*s == '%') {
1159             if (*++s == '\0') {
1160                 _nc_warning("expected character after %% in %s", name);
1161                 break;
1162             } else if (*s == 'p') {
1163                 if (*++s == '\0' || !isdigit((int) *s)) {
1164                     _nc_warning("expected digit after %%p in %s", name);
1165                     return;
1166                 } else {
1167                     n = (*s - '0');
1168                     if (n > actual)
1169                         actual = n;
1170                     params[n] = TRUE;
1171                 }
1172             }
1173         }
1174         s++;
1175     }
1176
1177     if (params[0]) {
1178         _nc_warning("%s refers to parameter 0 (%%p0), which is not allowed", name);
1179     }
1180     if (value == set_attributes || expected < 0) {
1181         ;
1182     } else if (expected != actual) {
1183         _nc_warning("%s uses %d parameters, expected %d", name,
1184                     actual, expected);
1185         for (n = 1; n < actual; n++) {
1186             if (!params[n])
1187                 _nc_warning("%s omits parameter %d", name, n);
1188         }
1189     }
1190 }
1191
1192 static char *
1193 skip_delay(char *s)
1194 {
1195     while (*s == '/' || isdigit(UChar(*s)))
1196         ++s;
1197     return s;
1198 }
1199
1200 /*
1201  * Skip a delay altogether, e.g., when comparing a simple string to sgr,
1202  * the latter may have a worst-case delay on the end.
1203  */
1204 static char *
1205 ignore_delays(char *s)
1206 {
1207     int delaying = 0;
1208
1209     do {
1210         switch (*s) {
1211         case '$':
1212             if (delaying == 0)
1213                 delaying = 1;
1214             break;
1215         case '<':
1216             if (delaying == 1)
1217                 delaying = 2;
1218             break;
1219         case '\0':
1220             delaying = 0;
1221             break;
1222         default:
1223             if (delaying) {
1224                 s = skip_delay(s);
1225                 if (*s == '>')
1226                     ++s;
1227                 delaying = 0;
1228             }
1229             break;
1230         }
1231         if (delaying)
1232             ++s;
1233     } while (delaying);
1234     return s;
1235 }
1236
1237 /*
1238  * An sgr string may contain several settings other than the one we're
1239  * interested in, essentially sgr0 + rmacs + whatever.  As long as the
1240  * "whatever" is contained in the sgr string, that is close enough for our
1241  * sanity check.
1242  */
1243 static bool
1244 similar_sgr(int num, char *a, char *b)
1245 {
1246     static const char *names[] =
1247     {
1248         "none"
1249         ,"standout"
1250         ,"underline"
1251         ,"reverse"
1252         ,"blink"
1253         ,"dim"
1254         ,"bold"
1255         ,"invis"
1256         ,"protect"
1257         ,"altcharset"
1258     };
1259     char *base_a = a;
1260     char *base_b = b;
1261     int delaying = 0;
1262
1263     while (*b != 0) {
1264         while (*a != *b) {
1265             if (*a == 0) {
1266                 if (b[0] == '$'
1267                     && b[1] == '<') {
1268                     _nc_warning("Did not find delay %s", _nc_visbuf(b));
1269                 } else {
1270                     _nc_warning("checking sgr(%s) %s\n\tcompare to %s\n\tunmatched %s",
1271                                 names[num], _nc_visbuf2(1, base_a),
1272                                 _nc_visbuf2(2, base_b),
1273                                 _nc_visbuf2(3, b));
1274                 }
1275                 return FALSE;
1276             } else if (delaying) {
1277                 a = skip_delay(a);
1278                 b = skip_delay(b);
1279             } else if ((*b == '0' || (*b == ';')) && *a == 'm') {
1280                 b++;
1281             } else {
1282                 a++;
1283             }
1284         }
1285         switch (*a) {
1286         case '$':
1287             if (delaying == 0)
1288                 delaying = 1;
1289             break;
1290         case '<':
1291             if (delaying == 1)
1292                 delaying = 2;
1293             break;
1294         default:
1295             delaying = 0;
1296             break;
1297         }
1298         a++;
1299         b++;
1300     }
1301     /* ignore delays on the end of the string */
1302     a = ignore_delays(a);
1303     return ((num != 0) || (*a == 0));
1304 }
1305
1306 static char *
1307 check_sgr(TERMTYPE *tp, char *zero, int num, char *cap, const char *name)
1308 {
1309     char *test;
1310
1311     _nc_tparm_err = 0;
1312     test = TPARM_9(set_attributes,
1313                    num == 1,
1314                    num == 2,
1315                    num == 3,
1316                    num == 4,
1317                    num == 5,
1318                    num == 6,
1319                    num == 7,
1320                    num == 8,
1321                    num == 9);
1322     if (test != 0) {
1323         if (PRESENT(cap)) {
1324             if (!similar_sgr(num, test, cap)) {
1325                 _nc_warning("%s differs from sgr(%d)\n\t%s=%s\n\tsgr(%d)=%s",
1326                             name, num,
1327                             name, _nc_visbuf2(1, cap),
1328                             num, _nc_visbuf2(2, test));
1329             }
1330         } else if (_nc_capcmp(test, zero)) {
1331             _nc_warning("sgr(%d) present, but not %s", num, name);
1332         }
1333     } else if (PRESENT(cap)) {
1334         _nc_warning("sgr(%d) missing, but %s present", num, name);
1335     }
1336     if (_nc_tparm_err)
1337         _nc_warning("stack error in sgr(%d) string", num);
1338     return test;
1339 }
1340
1341 #define CHECK_SGR(num,name) check_sgr(tp, zero, num, name, #name)
1342
1343 #ifdef TRACE
1344 /*
1345  * If tic is compiled with TRACE, we'll be able to see the output from the
1346  * DEBUG() macro.  But since it doesn't use traceon(), it always goes to
1347  * the standard error.  Use this function to make it simpler to follow the
1348  * resulting debug traces.
1349  */
1350 static void
1351 show_where(unsigned level)
1352 {
1353     if (_nc_tracing >= DEBUG_LEVEL(level)) {
1354         char my_name[256];
1355         _nc_get_type(my_name);
1356         fprintf(stderr, "\"%s\", line %d, '%s' ",
1357                 _nc_get_source(),
1358                 _nc_curr_line, my_name);
1359     }
1360 }
1361
1362 #else
1363 #define show_where(level)       /* nothing */
1364 #endif
1365
1366 /* other sanity-checks (things that we don't want in the normal
1367  * logic that reads a terminfo entry)
1368  */
1369 static void
1370 check_termtype(TERMTYPE *tp, bool literal)
1371 {
1372     bool conflict = FALSE;
1373     unsigned j, k;
1374     char fkeys[STRCOUNT];
1375
1376     /*
1377      * A terminal entry may contain more than one keycode assigned to
1378      * a given string (e.g., KEY_END and KEY_LL).  But curses will only
1379      * return one (the last one assigned).
1380      */
1381     if (!(_nc_syntax == SYN_TERMCAP && capdump)) {
1382         memset(fkeys, 0, sizeof(fkeys));
1383         for (j = 0; _nc_tinfo_fkeys[j].code; j++) {
1384             char *a = tp->Strings[_nc_tinfo_fkeys[j].offset];
1385             bool first = TRUE;
1386             if (!VALID_STRING(a))
1387                 continue;
1388             for (k = j + 1; _nc_tinfo_fkeys[k].code; k++) {
1389                 char *b = tp->Strings[_nc_tinfo_fkeys[k].offset];
1390                 if (!VALID_STRING(b)
1391                     || fkeys[k])
1392                     continue;
1393                 if (!_nc_capcmp(a, b)) {
1394                     fkeys[j] = 1;
1395                     fkeys[k] = 1;
1396                     if (first) {
1397                         if (!conflict) {
1398                             _nc_warning("Conflicting key definitions (using the last)");
1399                             conflict = TRUE;
1400                         }
1401                         fprintf(stderr, "... %s is the same as %s",
1402                                 keyname((int) _nc_tinfo_fkeys[j].code),
1403                                 keyname((int) _nc_tinfo_fkeys[k].code));
1404                         first = FALSE;
1405                     } else {
1406                         fprintf(stderr, ", %s",
1407                                 keyname((int) _nc_tinfo_fkeys[k].code));
1408                     }
1409                 }
1410             }
1411             if (!first)
1412                 fprintf(stderr, "\n");
1413         }
1414     }
1415
1416     for (j = 0; j < NUM_STRINGS(tp); j++) {
1417         char *a = tp->Strings[j];
1418         if (VALID_STRING(a))
1419             check_params(tp, ExtStrname(tp, j, strnames), a);
1420     }
1421
1422     check_acs(tp);
1423     check_colors(tp);
1424     check_keypad(tp);
1425
1426     /*
1427      * These may be mismatched because the terminal description relies on
1428      * restoring the cursor visibility by resetting it.
1429      */
1430     ANDMISSING(cursor_invisible, cursor_normal);
1431     ANDMISSING(cursor_visible, cursor_normal);
1432
1433     if (PRESENT(cursor_visible) && PRESENT(cursor_normal)
1434         && !_nc_capcmp(cursor_visible, cursor_normal))
1435         _nc_warning("cursor_visible is same as cursor_normal");
1436
1437     /*
1438      * From XSI & O'Reilly, we gather that sc/rc are required if csr is
1439      * given, because the cursor position after the scrolling operation is
1440      * performed is undefined.
1441      */
1442     ANDMISSING(change_scroll_region, save_cursor);
1443     ANDMISSING(change_scroll_region, restore_cursor);
1444
1445     /*
1446      * If we can clear tabs, we should be able to initialize them.
1447      */
1448     ANDMISSING(clear_all_tabs, set_tab);
1449
1450     if (PRESENT(set_attributes)) {
1451         char *zero = 0;
1452
1453         _nc_tparm_err = 0;
1454         if (PRESENT(exit_attribute_mode)) {
1455             zero = strdup(CHECK_SGR(0, exit_attribute_mode));
1456         } else {
1457             zero = strdup(TPARM_9(set_attributes, 0, 0, 0, 0, 0, 0, 0, 0, 0));
1458         }
1459         if (_nc_tparm_err)
1460             _nc_warning("stack error in sgr(0) string");
1461
1462         if (zero != 0) {
1463             CHECK_SGR(1, enter_standout_mode);
1464             CHECK_SGR(2, enter_underline_mode);
1465             CHECK_SGR(3, enter_reverse_mode);
1466             CHECK_SGR(4, enter_blink_mode);
1467             CHECK_SGR(5, enter_dim_mode);
1468             CHECK_SGR(6, enter_bold_mode);
1469             CHECK_SGR(7, enter_secure_mode);
1470             CHECK_SGR(8, enter_protected_mode);
1471             CHECK_SGR(9, enter_alt_charset_mode);
1472             free(zero);
1473         } else {
1474             _nc_warning("sgr(0) did not return a value");
1475         }
1476     } else if (PRESENT(exit_attribute_mode) &&
1477                set_attributes != CANCELLED_STRING) {
1478         if (_nc_syntax == SYN_TERMINFO)
1479             _nc_warning("missing sgr string");
1480     }
1481
1482     if (PRESENT(exit_attribute_mode)) {
1483         char *check_sgr0 = _nc_trim_sgr0(tp);
1484
1485         if (check_sgr0 == 0 || *check_sgr0 == '\0') {
1486             _nc_warning("trimmed sgr0 is empty");
1487         } else {
1488             show_where(2);
1489             if (check_sgr0 != exit_attribute_mode) {
1490                 DEBUG(2,
1491                       ("will trim sgr0\n\toriginal sgr0=%s\n\ttrimmed  sgr0=%s",
1492                        _nc_visbuf2(1, exit_attribute_mode),
1493                        _nc_visbuf2(2, check_sgr0)));
1494                 free(check_sgr0);
1495             } else {
1496                 DEBUG(2,
1497                       ("will not trim sgr0\n\toriginal sgr0=%s",
1498                        _nc_visbuf(exit_attribute_mode)));
1499             }
1500         }
1501     }
1502 #ifdef TRACE
1503     show_where(2);
1504     if (!auto_right_margin) {
1505         DEBUG(2,
1506               ("can write to lower-right directly"));
1507     } else if (PRESENT(enter_am_mode) && PRESENT(exit_am_mode)) {
1508         DEBUG(2,
1509               ("can write to lower-right by suppressing automargin"));
1510     } else if ((PRESENT(enter_insert_mode) && PRESENT(exit_insert_mode))
1511                || PRESENT(insert_character) || PRESENT(parm_ich)) {
1512         DEBUG(2,
1513               ("can write to lower-right by using inserts"));
1514     } else {
1515         DEBUG(2,
1516               ("cannot write to lower-right"));
1517     }
1518 #endif
1519
1520     /*
1521      * Some standard applications (e.g., vi) and some non-curses
1522      * applications (e.g., jove) get confused if we have both ich1 and
1523      * smir/rmir.  Let's be nice and warn about that, too, even though
1524      * ncurses handles it.
1525      */
1526     if ((PRESENT(enter_insert_mode) || PRESENT(exit_insert_mode))
1527         && PRESENT(parm_ich)) {
1528         _nc_warning("non-curses applications may be confused by ich1 with smir/rmir");
1529     }
1530
1531     /*
1532      * Finally, do the non-verbose checks
1533      */
1534     if (save_check_termtype != 0)
1535         save_check_termtype(tp, literal);
1536 }