1
0
mirror of https://github.com/weechat/weechat.git synced 2026-07-08 02:33:12 +02:00

core: fix typo in a comment

This commit is contained in:
Sébastien Helleu
2016-01-31 08:35:44 +01:00
parent c8710e28cb
commit 78aea5df6c
+1 -1
View File
@@ -2861,7 +2861,7 @@ string_input_for_buffer (const char *string)
pos_space = strchr (string + 1, ' ');
/*
* if there's no other '/' or if '/' is after first space,
* if there are no other '/' or if '/' is after first space,
* then it is a command, and return NULL
*/
if (!pos_slash || (pos_space && pos_slash > pos_space))