You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Code contains #define TI_ALT_MAGIC 542, which is the alternative header for terminfo "extended storage format". This is ultimately used to correctly calculate the strings offset into the compiled terminfo database.
However, term(5) states that the alt magic is 0542, which is octal. TI_ALT_MAGIC should be set to (int)354, or prefixed with a zero.
I don't have any extended storage format terminfo files handy, but I am happy to test if you point me to where I can get some.
The text was updated successfully, but these errors were encountered:
Code contains
#define TI_ALT_MAGIC 542
, which is the alternative header for terminfo "extended storage format". This is ultimately used to correctly calculate the strings offset into the compiled terminfo database.However, term(5) states that the alt magic is 0542, which is octal. TI_ALT_MAGIC should be set to (int)354, or prefixed with a zero.
I don't have any extended storage format terminfo files handy, but I am happy to test if you point me to where I can get some.
The text was updated successfully, but these errors were encountered: