1
0
mirror of https://github.com/weechat/weechat.git synced 2026-07-03 00:03:12 +02:00

php: rename print functions

Rename:
- printf to print
- printf_date_tags to print_date_tags
- printf_y to print_y
- log_printf to log_print
This commit is contained in:
Sébastien Helleu
2017-09-07 21:50:20 +02:00
parent 8bd874a281
commit 1851f6472f
3 changed files with 36 additions and 36 deletions
+4 -4
View File
@@ -147,10 +147,10 @@ const zend_function_entry weechat_functions[] = {
PHP_FE(weechat_key_unbind, NULL)
PHP_FE(weechat_prefix, NULL)
PHP_FE(weechat_color, NULL)
PHP_FE(weechat_printf, NULL)
PHP_FE(weechat_printf_date_tags, NULL)
PHP_FE(weechat_printf_y, NULL)
PHP_FE(weechat_log_printf, NULL)
PHP_FE(weechat_print, NULL)
PHP_FE(weechat_print_date_tags, NULL)
PHP_FE(weechat_print_y, NULL)
PHP_FE(weechat_log_print, NULL)
PHP_FE(weechat_hook_command, NULL)
PHP_FE(weechat_hook_completion, NULL)
PHP_FE(weechat_hook_completion_get_string, NULL)