summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndy Williams <andy@andywilliams.me>2016-04-07 17:43:31 +0100
committerAndy Williams <andy@andywilliams.me>2016-04-07 17:43:31 +0100
commitd3ae71510cc166185975dbfaa462a69260156a8e (patch)
tree9dc2e16a8b5dd20d3b7bd1be9f64a3e45fdf37b6
parentac2297e736dab95a23a253e49bcfad8196e397a7 (diff)
downloadefl-d3ae71510cc166185975dbfaa462a69260156a8e.tar.gz
[selection] split words on * and & also
Pretty important for C...
-rw-r--r--legacy/elm_code/src/lib/widget/elm_code_widget_selection.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/legacy/elm_code/src/lib/widget/elm_code_widget_selection.c b/legacy/elm_code/src/lib/widget/elm_code_widget_selection.c
index 8f43890008..94102342c7 100644
--- a/legacy/elm_code/src/lib/widget/elm_code_widget_selection.c
+++ b/legacy/elm_code/src/lib/widget/elm_code_widget_selection.c
@@ -6,7 +6,7 @@
#include "elm_code_widget_private.h"
-static char _breaking_chars[] = " \t,.?!;:()[]{}";
+static char _breaking_chars[] = " \t,.?!;:*&()[]{}";
static Elm_Code_Widget_Selection_Data *
_elm_code_widget_selection_new()