mirror of
https://gitlab.gnome.org/GNOME/libxml2.git
synced 2025-07-02 20:42:30 +03:00
unicode: Deprecate most xmlUCSIs* functions
These don't seem to be used by downstream code.
This commit is contained in:
@ -492,7 +492,10 @@ def print_function_wrapper(name, output, export, include):
|
||||
# Don't delete the function entry in the caller.
|
||||
return 1
|
||||
|
||||
is_deprecated = name in deprecated_funcs
|
||||
if name.startswith('xmlUCSIs'):
|
||||
is_deprecated = name != 'xmlUCSIsBlock' and name != 'xmlUCSIsCat'
|
||||
else:
|
||||
is_deprecated = name in deprecated_funcs
|
||||
|
||||
c_call = ""
|
||||
format=""
|
||||
|
Reference in New Issue
Block a user