diff options
author | Sébastien Helleu <flashcode@flashtux.org> | 2022-12-25 15:06:03 +0100 |
---|---|---|
committer | Sébastien Helleu <flashcode@flashtux.org> | 2022-12-25 15:06:03 +0100 |
commit | 445b522498fb07d8d515dd6f3763c21db97f37d0 (patch) | |
tree | c40105cb46da9cdbdf97d3c92a38b5c7993bb49c | |
parent | f5135277af8a3379e0b0e0944bb8a045557fd9ed (diff) | |
download | weechat-445b522498fb07d8d515dd6f3763c21db97f37d0.zip |
core: fix typo in comment
-rw-r--r-- | src/core/wee-command.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/wee-command.c b/src/core/wee-command.c index 1d4444b13..3ea8c2699 100644 --- a/src/core/wee-command.c +++ b/src/core/wee-command.c @@ -3340,7 +3340,7 @@ COMMAND_CALLBACK(input) gui_input_history_global_next (buffer); else if (string_strcasecmp (argv[1], "jump_smart") == 0) gui_input_jump_smart (buffer); - /* not used any more in WeeChat >= 1.0 (replaced by "/buffer ++") */ + /* not used any more in WeeChat >= 1.0 (replaced by "/buffer +") */ else if (string_strcasecmp (argv[1], "jump_last_buffer") == 0) (void) input_data (buffer, "/buffer +", NULL); else if (string_strcasecmp (argv[1], "jump_last_buffer_displayed") == 0) |