summaryrefslogtreecommitdiff
path: root/src/gui/gui-keyboard.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/gui/gui-keyboard.c')
-rw-r--r--src/gui/gui-keyboard.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gui/gui-keyboard.c b/src/gui/gui-keyboard.c
index ea927f841..7dc082f5b 100644
--- a/src/gui/gui-keyboard.c
+++ b/src/gui/gui-keyboard.c
@@ -628,7 +628,7 @@ gui_keyboard_pressed (char *key_str)
gui_key_combo_buffer[0] = '\0';
if (ptr_key->command)
{
- commands = string_split_multi_command (ptr_key->command, ';');
+ commands = string_split_command (ptr_key->command, ';');
if (commands)
{
for (ptr_cmd = commands; *ptr_cmd; ptr_cmd++)
@@ -636,7 +636,7 @@ gui_keyboard_pressed (char *key_str)
input_data (gui_current_window->buffer,
*ptr_cmd, 0);
}
- string_free_multi_command (commands);
+ string_free_splitted_command (commands);
}
}
else