summaryrefslogtreecommitdiff
path: root/src/core
diff options
context:
space:
mode:
Diffstat (limited to 'src/core')
-rw-r--r--src/core/wee-command.c2
-rw-r--r--src/core/wee-secure-config.c4
-rw-r--r--src/core/weechat.c2
3 files changed, 4 insertions, 4 deletions
diff --git a/src/core/wee-command.c b/src/core/wee-command.c
index cbdb79456..62ac281f4 100644
--- a/src/core/wee-command.c
+++ b/src/core/wee-command.c
@@ -8406,7 +8406,7 @@ command_init ()
" restore default binding for key alt-r:\n"
" /key reset meta-r\n"
" key \"tab\" to stop search in buffer:\n"
- " /key bindctxt search ctrl-I /input search_stop\n"
+ " /key bindctxt search ctrl-i /input search_stop\n"
" middle button of mouse on a nick to retrieve info on nick:\n"
" /key bindctxt mouse @item(buffer_nicklist):button3 "
"/msg nickserv info ${nick}"),
diff --git a/src/core/wee-secure-config.c b/src/core/wee-secure-config.c
index 4ff2fd7b8..d3cef343f 100644
--- a/src/core/wee-secure-config.c
+++ b/src/core/wee-secure-config.c
@@ -60,7 +60,7 @@ secure_config_get_passphrase_from_user (const char *error)
"by WeeChat:");
prompt[1] = _("(enter just one space to skip the passphrase, but this "
"will DISABLE all secured data!)");
- prompt[2] = _("(press ctrl-C to exit WeeChat now)");
+ prompt[2] = _("(press ctrl-c to exit WeeChat now)");
prompt[3] = error;
prompt[4] = NULL;
@@ -83,7 +83,7 @@ secure_config_get_passphrase_from_user (const char *error)
}
else if (strcmp (passphrase, "\x03") == 0)
{
- /* ctrl-C pressed, just exit now */
+ /* ctrl-c pressed, just exit now */
exit (1);
}
else
diff --git a/src/core/weechat.c b/src/core/weechat.c
index b195c57e3..982b41bea 100644
--- a/src/core/weechat.c
+++ b/src/core/weechat.c
@@ -391,7 +391,7 @@ weechat_startup_message ()
{
string_fprintf (stdout,
_("WeeChat is running in headless mode "
- "(Ctrl-C to quit)."));
+ "(ctrl-c to quit)."));
string_fprintf (stdout, "\n");
}