Deleted legacy type name typedefs and declaration of termkey_snprint_key()

This commit is contained in:
Paul LeoNerd Evans 2011-08-27 19:32:39 +01:00
parent 5fc3aff57a
commit 83ca948d78
2 changed files with 4 additions and 13 deletions

View File

@ -995,7 +995,10 @@ static TermKeySym register_c0_full(TermKey *tk, TermKeySym sym, int modifier_set
return sym;
}
/* Previous name for this function */
/* Previous name for this function
* No longer declared in termkey.h but it remains in the compiled library for
* backward-compatibility reasons.
*/
size_t termkey_snprint_key(TermKey *tk, char *buffer, size_t len, TermKeyKey *key, TermKeyFormat format)
{
return termkey_strfkey(tk, buffer, len, key, format);

View File

@ -197,18 +197,6 @@ char *termkey_strpkey(TermKey *tk, const char *str, TermKeyKey *key, TermKeyFo
int termkey_keycmp(TermKey *tk, const TermKeyKey *key1, const TermKeyKey *key2);
// Old name for termkey_strfkey()
size_t termkey_snprint_key(TermKey *tk, char *buffer, size_t len, TermKeyKey *key, TermKeyFormat format);
// Legacy name typedefs
typedef TermKeySym termkey_keysym;
typedef TermKeyType termkey_type;
typedef TermKeyResult termkey_result;
typedef TermKeyKey termkey_key;
typedef TermKey termkey_t;
#endif
#ifdef __cplusplus