mirror of https://github.com/MidnightCommander/mc
Fixed searching the start of word
Signed-off-by: Slava Zanko <slavazanko@gmail.com>
This commit is contained in:
parent
eacda21c12
commit
87e65893e7
|
@ -979,7 +979,7 @@ pipe_mail (WEdit * edit, char *to, char *subject, char *cc)
|
|||
static gboolean
|
||||
is_break_char (char c)
|
||||
{
|
||||
return (isspace (c) || strchr ("{}[]()<>=|/\\!?~'\",.;:#$%^&*", c));
|
||||
return (isspace (c) || strchr ("{}[]()<>=|/\\!?~-+`'\",.;:#$%^&*", c));
|
||||
}
|
||||
|
||||
/* --------------------------------------------------------------------------------------------- */
|
||||
|
|
Loading…
Reference in New Issue