summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/Fl_Input_.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Fl_Input_.cxx b/src/Fl_Input_.cxx
index 1dd104fc9..f7d739889 100644
--- a/src/Fl_Input_.cxx
+++ b/src/Fl_Input_.cxx
@@ -422,7 +422,7 @@ void Fl_Input_::drawtext(int X, int Y, int W, int H) {
\todo This function is not UTF-8-aware.
*/
static int isword(char c) {
- return (c&128 || isalnum(c) || strchr("#%&-/@\\_~", c));
+ return (c&128 || isalnum(c) || strchr("#%-@_~", c));
}
/**