diff options
author | Sebastien Helleu <flashcode@flashtux.org> | 2013-07-15 18:28:01 +0200 |
---|---|---|
committer | Sebastien Helleu <flashcode@flashtux.org> | 2013-07-15 18:28:01 +0200 |
commit | 92609e3cd631e491617e0d2ac3b6a129976395cc (patch) | |
tree | a0311eb8449676e0d41e4d97a0e621a5680ed327 /src | |
parent | a8dc36902b95f3d5769ae971a857a3b145ba969b (diff) | |
download | weechat-92609e3cd631e491617e0d2ac3b6a129976395cc.zip |
core: remove obsolete reference to "key functions" in comments
Diffstat (limited to 'src')
-rw-r--r-- | src/gui/gui-key.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gui/gui-key.c b/src/gui/gui-key.c index 8a3138513..032596fc7 100644 --- a/src/gui/gui-key.c +++ b/src/gui/gui-key.c @@ -731,7 +731,7 @@ gui_key_search_part (struct t_gui_buffer *buffer, int context, } /* - * Binds a key to a function (command or special function). + * Binds a key to a command. * * If buffer is not null, then key is specific to buffer otherwise it's general * key (for most keys). @@ -1288,7 +1288,7 @@ gui_key_pressed (const char *key_str) { if (strcmp (ptr_key->key, gui_key_combo_buffer) == 0) { - /* exact combo found => execute function or command */ + /* exact combo found => execute command */ gui_key_combo_buffer[0] = '\0'; if (ptr_key->command) { |