diff options
author | Sébastien Helleu <flashcode@flashtux.org> | 2024-03-12 21:09:42 +0100 |
---|---|---|
committer | Sébastien Helleu <flashcode@flashtux.org> | 2024-03-12 21:27:37 +0100 |
commit | 24c4029c96fa04b3cb4f90fbb36dc5248dd39810 (patch) | |
tree | ca51727f97207117f335f0309c063ffd2f168f2d /tools | |
parent | bb346f8c6c62655a6ef8fe4bc848d179258ce008 (diff) | |
download | weechat-24c4029c96fa04b3cb4f90fbb36dc5248dd39810.zip |
core: remove "wee-" prefix from source files in src/core and src/core/hook
Diffstat (limited to 'tools')
-rwxr-xr-x | tools/check_curl_symbols.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tools/check_curl_symbols.py b/tools/check_curl_symbols.py index 3aecb206f..86a790475 100755 --- a/tools/check_curl_symbols.py +++ b/tools/check_curl_symbols.py @@ -17,7 +17,7 @@ # """ -Check if Curl symbols defined in src/core/wee-url.c are matching symbols +Check if Curl symbols defined in src/core/core-url.c are matching symbols defined in Curl (introduced/deprecated/last versions), using this file: https://github.com/curl/curl/blob/master/docs/libcurl/symbols-in-versions. @@ -47,7 +47,7 @@ import re import sys SRC_PATH = ( - Path(__file__).resolve().parent.parent / "src" / "core" / "wee-url.c" + Path(__file__).resolve().parent.parent / "src" / "core" / "core-url.c" ) WEECHAT_CURL_MIN_VERSION_RE = ( @@ -143,7 +143,7 @@ def get_curl_symbols(symbols_file: TextIO) -> Dict[str, Tuple[int, int]]: def get_weechat_curl_symbols() -> Tuple[List[WeechatCurlSymbol], int]: """ - Parse Curl symbols declared in src/core/wee-url.c. + Parse Curl symbols declared in src/core/core-url.c. :return: tuple (list_symbols, errors) """ |