diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/core/wee-debug.c | 8 | ||||
-rw-r--r-- | src/gui/curses/gui-curses-main.c | 2 | ||||
-rw-r--r-- | src/plugins/aspell/weechat-aspell.c | 4 | ||||
-rw-r--r-- | src/plugins/guile/weechat-guile.c | 2 | ||||
-rw-r--r-- | src/plugins/perl/weechat-perl.c | 2 | ||||
-rw-r--r-- | src/plugins/python/weechat-python.c | 2 | ||||
-rw-r--r-- | src/plugins/ruby/weechat-ruby.c | 2 | ||||
-rw-r--r-- | src/plugins/tcl/weechat-tcl.c | 2 |
8 files changed, 12 insertions, 12 deletions
diff --git a/src/core/wee-debug.c b/src/core/wee-debug.c index 205ccfeea..3ef60b81a 100644 --- a/src/core/wee-debug.c +++ b/src/core/wee-debug.c @@ -523,18 +523,18 @@ debug_libs_cb (void *data, const char *signal, const char *type_data, gui_chat_printf (NULL, " core:"); gui_main_debug_libs (); - gui_chat_printf (NULL, " gcrypt: v%s%s", + gui_chat_printf (NULL, " gcrypt: %s%s", GCRYPT_VERSION, (weechat_no_gcrypt) ? " (not initialized)" : ""); #ifdef HAVE_GNUTLS - gui_chat_printf (NULL, " gnutls: v%s%s", + gui_chat_printf (NULL, " gnutls: %s%s", GNUTLS_VERSION, (weechat_no_gnutls) ? " (not initialized)" : ""); #else gui_chat_printf (NULL, " gnutls: (not available)"); #endif - gui_chat_printf (NULL, " curl: v%s", LIBCURL_VERSION); - gui_chat_printf (NULL, " zlib: v%s", ZLIB_VERSION); + gui_chat_printf (NULL, " curl: %s", LIBCURL_VERSION); + gui_chat_printf (NULL, " zlib: %s", ZLIB_VERSION); return WEECHAT_RC_OK; } diff --git a/src/gui/curses/gui-curses-main.c b/src/gui/curses/gui-curses-main.c index 489cb4d1f..4cea3e326 100644 --- a/src/gui/curses/gui-curses-main.c +++ b/src/gui/curses/gui-curses-main.c @@ -304,7 +304,7 @@ gui_main_signal_sigwinch () void gui_main_debug_libs () { - gui_chat_printf (NULL, " ncurses: v%s (patch %d)", + gui_chat_printf (NULL, " ncurses: %s (patch %d)", NCURSES_VERSION, NCURSES_VERSION_PATCH); } diff --git a/src/plugins/aspell/weechat-aspell.c b/src/plugins/aspell/weechat-aspell.c index e453ce85b..fc7dfdd69 100644 --- a/src/plugins/aspell/weechat-aspell.c +++ b/src/plugins/aspell/weechat-aspell.c @@ -935,11 +935,11 @@ weechat_aspell_debug_libs_cb (void *data, const char *signal, (void) signal_data; #ifdef USE_ENCHANT - weechat_printf (NULL, " %s: enchant v%s", + weechat_printf (NULL, " %s: enchant %s", ASPELL_PLUGIN_NAME, enchant_get_version ()); #else #ifdef HAVE_ASPELL_VERSION_STRING - weechat_printf (NULL, " %s: aspell v%s", + weechat_printf (NULL, " %s: aspell %s", ASPELL_PLUGIN_NAME, aspell_version_string ()); #else weechat_printf (NULL, " %s: aspell (?)", ASPELL_PLUGIN_NAME); diff --git a/src/plugins/guile/weechat-guile.c b/src/plugins/guile/weechat-guile.c index fa26c5f92..91d95cb0c 100644 --- a/src/plugins/guile/weechat-guile.c +++ b/src/plugins/guile/weechat-guile.c @@ -788,7 +788,7 @@ weechat_guile_signal_debug_libs_cb (void *data, const char *signal, (void) type_data; (void) signal_data; - weechat_printf (NULL, " %s: v%d.%d.%d", + weechat_printf (NULL, " %s: %d.%d.%d", GUILE_PLUGIN_NAME, SCM_MAJOR_VERSION, SCM_MINOR_VERSION, diff --git a/src/plugins/perl/weechat-perl.c b/src/plugins/perl/weechat-perl.c index aa1594a89..325f68068 100644 --- a/src/plugins/perl/weechat-perl.c +++ b/src/plugins/perl/weechat-perl.c @@ -824,7 +824,7 @@ weechat_perl_signal_debug_libs_cb (void *data, const char *signal, (void) type_data; (void) signal_data; - weechat_printf (NULL, " %s: v%s", PERL_PLUGIN_NAME, PERL_VERSION_STRING); + weechat_printf (NULL, " %s: %s", PERL_PLUGIN_NAME, PERL_VERSION_STRING); return WEECHAT_RC_OK; } diff --git a/src/plugins/python/weechat-python.c b/src/plugins/python/weechat-python.c index f10050359..7bbb9c9e4 100644 --- a/src/plugins/python/weechat-python.c +++ b/src/plugins/python/weechat-python.c @@ -1140,7 +1140,7 @@ weechat_python_signal_debug_libs_cb (void *data, const char *signal, (void) type_data; (void) signal_data; - weechat_printf (NULL, " %s: v%s", PYTHON_PLUGIN_NAME, PY_VERSION); + weechat_printf (NULL, " %s: %s", PYTHON_PLUGIN_NAME, PY_VERSION); return WEECHAT_RC_OK; } diff --git a/src/plugins/ruby/weechat-ruby.c b/src/plugins/ruby/weechat-ruby.c index b4490e8a6..beed41391 100644 --- a/src/plugins/ruby/weechat-ruby.c +++ b/src/plugins/ruby/weechat-ruby.c @@ -962,7 +962,7 @@ weechat_ruby_signal_debug_libs_cb (void *data, const char *signal, (void) type_data; (void) signal_data; - weechat_printf (NULL, " %s: v%s", RUBY_PLUGIN_NAME, ruby_version); + weechat_printf (NULL, " %s: %s", RUBY_PLUGIN_NAME, ruby_version); return WEECHAT_RC_OK; } diff --git a/src/plugins/tcl/weechat-tcl.c b/src/plugins/tcl/weechat-tcl.c index 096ef57fb..c5773b5d9 100644 --- a/src/plugins/tcl/weechat-tcl.c +++ b/src/plugins/tcl/weechat-tcl.c @@ -702,7 +702,7 @@ weechat_tcl_signal_debug_libs_cb (void *data, const char *signal, (void) type_data; (void) signal_data; - weechat_printf (NULL, " %s: v%s", TCL_PLUGIN_NAME, TCL_VERSION); + weechat_printf (NULL, " %s: %s", TCL_PLUGIN_NAME, TCL_VERSION); return WEECHAT_RC_OK; } |