Only print about unrecognised terminfo variable names when debugging
This commit is contained in:
parent
56634d0c82
commit
14561e2a30
|
@ -356,7 +356,10 @@ static int funcname2keysym(const char *funcname, termkey_type *typep, termkey_ke
|
||||||
return 1;
|
return 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
printf("TODO: Need to convert funcname %s to a type/sym\n", funcname);
|
#ifdef DEBUG
|
||||||
|
fprintf(stderr, "TODO: Need to convert funcname %s to a type/sym\n", funcname);
|
||||||
|
#endif
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue